Home
last modified time | relevance | path

Searched refs:DecimalTuple (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Ddecimal.py144 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent') variable
146 DecimalTuple = lambda *args: args function
991 return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp)
/external/python/cpython2/Doc/library/
Ddecimal.rst431 ``DecimalTuple(sign, digits, exponent)``.