Home
last modified time | relevance | path

Searched refs:to_eng_string (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_decimal.py1442 self.assertEqual(type(d.to_eng_string()), str)
2202 d = c.to_eng_string(Decimal(10))
2203 self.assertEqual(c.to_eng_string(10), d)
2204 self.assertRaises(TypeError, c.to_eng_string, '10')
/external/python/cpython2/Lib/
Ddecimal.py1050 def to_eng_string(self, context=None): member in Decimal
5340 def to_eng_string(self, a): member in Context
5366 return a.to_eng_string(context=self)
/external/python/cpython2/Doc/library/
Ddecimal.rst884 .. method:: to_eng_string([context])
1456 .. method:: to_eng_string(x)
/external/python/cpython2/Doc/whatsnew/
D2.4.rst674 such as :meth:`to_eng_string` and :meth:`to_sci_string`.