- 17 Tem, 2016 1 kayıt (commit)
-
-
Stefan Krah yazdı
eliminate all internal uses of overridden methods.
-
- 20 Haz, 2016 2 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
- 26 Nis, 2016 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 28 Ara, 2015 1 kayıt (commit)
-
-
Stefan Krah yazdı
Mark Dickinson.
-
- 19 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
-
- 28 Eyl, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Corresponding functions now accept `const char *` (issue #1772673).
-
- 26 Agu, 2014 1 kayıt (commit)
-
-
Stefan Krah yazdı
with an external libmpdec.
-
- 29 Nis, 2014 2 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
- 15 Mar, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 24 Kas, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
_decimal: o Make all "mpd_t to C integer" conversion functions available in both the 64-bit and the 32-bit versions. o Make all mixed mpd_t/C integer arithmetic functions available in the 32-bit version. o Better handling of __STDC_LIMIT_MACROS for C++ users. o Add struct tags (at the request of C++ users). 2) Check for libmpdec.so.2 if --with-system-libmpdec is used.
-
- 08 Kas, 2013 4 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
- 29 Eki, 2013 4 kayıt (commit)
-
-
Victor Stinner yazdı
failure (memory allocation failure): raise a MemoryError exception
-
Victor Stinner yazdı
failure (memory allocation failure): raise a MemoryError exception
-
Victor Stinner yazdı
PyObject_IsInstance() failure
-
Victor Stinner yazdı
PyObject_IsInstance() failure
-
- 29 May, 2013 3 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
character in _decimal.c.
-
Stefan Krah yazdı
-
- 24 Ock, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
InvalidOperation if the format specification (width, prec) exceeds the internal limits of libmpdec.
-
- 16 Ock, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
and pickling compatibility.
-
- 21 Ara, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 16 Ara, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 15 Ara, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
supports all None default values present in decimal.py. These values were largely undocumented.
-
- 10 Kas, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 08 Kas, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 07 Kas, 2012 2 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
from a Decimal argument.
-
- 10 Eyl, 2012 2 kayıt (commit)
-
-
Stefan Krah yazdı
constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification).
-
Stefan Krah yazdı
constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification).
-
- 24 Agu, 2012 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 23 Agu, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
decimal.py. The hack to remove the ideal exponent is no longer required.
-
- 22 Agu, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
had a coefficient with MAX_PREC=425000000 digits and a negative exponent. Increasing the context limits above the official values fixes the issue and is safe (in this case!).
-
- 28 Tem, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
form is used in many places in the source tree, but was found to be incorrect in a recent tracker discussion.
-
- 30 Haz, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
use log10() to calculate the size of the output array. The current code has been tested on x86/amd64 (and to a lesser extent on qemu-mips qemu-sparc) and produces sufficiently large values for all inputs tested so far (coefficient sizes of 10**18 - 1 are hard to test exhaustively). The new code does not rely on the correctness of log10() and resizes the output arrays if the allocated space is insufficient.
-
- 24 Haz, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
that was last accessed. In the pi benchmark (64-bit platform, prec=9), _decimal is now only 1.5x slower than float.
-