AArch64 | |
ppc64le | |
s390x | |
x86-64 |
- Use more compatible py.test syntax.
- Update to 1.6 * Speed up Fraction creation from a string value by 3-5x. * Built using Cython 0.28.1. - Update to 1.5 * Result of power operator (``**``) was not normalised for negative values. * Built using Cython 0.27.2. - Update to 1.4 * Rebuilt using Cython 0.26.1 to improve support of Python 3.7. - Update to 1.3 * repair the faster instantiation from Decimal values in Python 3.6 * avoid potential glitch for certain large numbers in normalisation under Python 2.x - Update to 1.2 * change hash function in Python 2.x to match that of ``fractions.Fraction`` - Update to 1.1 * faster instantiation from float values * faster instantiation from Decimal values in Python 3.6 - Update to 1.0 * ``Fraction.imag`` property could return non-zero * parsing strings with long fraction parts could use an incorrect scale - Implement single-spec version
- Update to 0.7 (2014-10-09) * faster instantiation from float and string values fix test in Python 2.x - Update to 0.6 (2014-10-09) * faster normalisation (and thus instantiation)
- Initial version
- Update to 1.10: * New method fraction.as_integer_ratio() * python 3.8 fixes
- version update to 1.11 * Fix ``OverflowError`` when parsing string values with long decimal parts.
- Update to 1.10: * New method fraction.as_integer_ratio() * python 3.8 fixes
- Update to 1.9 + Substantially faster normalisation (and therefore instantiation) in Py3.5+. + // (floordiv) now follows the expected rounding behaviour when used with floats (by converting to float first), and is much faster for integer operations. + Fix return type of divmod(), where the first item should be an integer. + Further speed up mod and divmod operations. - Update to 1.8 + Faster mod and divmod calculation. - Update to 1.7 + Faster normalisation and fraction string parsing. + Add support for Python 3.7. + Built using Cython 0.29. - Changed %check to use %pytest_arch