- 5b10b98 bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929) by Serhiy Storchaka · 6 years ago
- 3f7983a bpo-35560: Remove assertion from format(float, "n") (GH-11288) by Xtreak · 6 years ago
- 16dfca4 bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274) by INADA Naoki · 6 years ago
- 9b6c60c bpo-31979: Simplify transforming decimals to ASCII (#4336) by Serhiy Storchaka · 7 years ago
- 2bb69a5 bpo-31373: remove overly strict float range checks (#3486) by Benjamin Peterson · 7 years ago
- 9e6ac83 bpo-29773: Add more cases for testing string to float conversion errors. (#580) by Serhiy Storchaka · 8 years ago
- 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 8 years ago
- 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 8 years ago
- a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
- 16931c3 Issue #26983: float() now always return an instance of exact float. by Serhiy Storchaka · 8 years ago
- 1f36443 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
- ea36c94 Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. by Serhiy Storchaka · 8 years ago
- e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 9 years ago
- f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
- 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
- eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
- 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
- cb39d1f Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok. by Steve Dower · 10 years ago
- 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 10 years ago
- 101447b fix up import style by Benjamin Peterson · 10 years ago
- c19ed37 remove redundant test by Benjamin Peterson · 10 years ago
- a915723 fix potential refleak in PyFloat_AsDouble (closes #23590) by Benjamin Peterson · 10 years ago
- 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
- 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
- a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
- 89e6d38 Remove untests for non-existent functionality. by Mark Dickinson · 13 years ago
- e383e82 Issue #14521: Make result of float('nan') and float('-nan') more consistent across platforms. Further, don't rely on Py_HUGE_VAL for float('inf'). by Mark Dickinson · 13 years ago
- 2903772 merge 3.2 by Benjamin Peterson · 13 years ago
- b3b8ba6 bring is_integer into tested existence by Benjamin Peterson · 13 years ago
- 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
- 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 14 years ago
- 67ebabd Removed fcmp and FUZZ from test.support, following the discussion on python-dev: by Eli Bendersky · 14 years ago
- 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 14 years ago
- 0169af1 Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
- 3315438 Backout broken backport. (Sorry.) by Mark Dickinson · 14 years ago
- 11e77ff Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
- d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
- 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
- 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 14 years ago
- 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
- a813a63 Merged revisions 86003 via svnmerge from by Brian Curtin · 14 years ago
- 076623b Fix ResourceWarning. Use context manager to properly close file. by Brian Curtin · 14 years ago
- 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
- e401c68 Merged revisions 82461 via svnmerge from by Benjamin Peterson · 14 years ago
- 6ded1d5 Merged revisions 82117 via svnmerge from by Mark Dickinson · 14 years ago
- dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
- 5daab45 Merged revisions 79804 via svnmerge from by Mark Dickinson · 15 years ago
- 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 15 years ago
- c2d8689 Merged revisions 78166 via svnmerge from by Mark Dickinson · 15 years ago
- b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
- 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
- 4667251 Merged revisions 77452 via svnmerge from by Mark Dickinson · 15 years ago
- 81612e8 Merged revisions 77410,77421,77450-77451 via svnmerge from by Mark Dickinson · 15 years ago
- 9ab44b5 Merged revisions 77139-77140 via svnmerge from by Mark Dickinson · 15 years ago
- 8a10ecc Merged revisions 76632 via svnmerge from by Eric Smith · 15 years ago
- ae31a7c Merged revisions 76485 via svnmerge from by Mark Dickinson · 15 years ago
- 4ca33d1 Merged revisions 76483 via svnmerge from by Mark Dickinson · 15 years ago
- be0fdac Merged revisions 75890 via svnmerge from by Mark Dickinson · 15 years ago
- 70ec8ee Remove extra blank line accidentally introduced in r75885 by Mark Dickinson · 15 years ago
- ee26c98 Merged revisions 75885 via svnmerge from by Mark Dickinson · 15 years ago
- a9023be Merged revisions 75883 via svnmerge from by Mark Dickinson · 15 years ago
- ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- bd16edd Refactor to remove duplicated nan/inf parsing code in by Mark Dickinson · 15 years ago
- d1ec8b2 Merged revisions 72564 via svnmerge from by Mark Dickinson · 15 years ago
- 741191f Issue #3382. float 'F' formatting no longer maps to 'f'. This only affects nan and inf. by Eric Smith · 16 years ago
- 6337622 Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
- d3ca557 Issue #5864: Fix problem with empty code formatting for floats, by Mark Dickinson · 16 years ago
- e6a076d Issue #1869 (and 4707, 5118, 5473, 1456775): use the new by Mark Dickinson · 16 years ago
- 7efad9e Sort out some confusion in test_float.py: the two by Mark Dickinson · 16 years ago
- 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 16 years ago
- 2808d3c Merged revisions 71627 via svnmerge from by Benjamin Peterson · 16 years ago
- 4a1f593 Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to by Mark Dickinson · 16 years ago
- d43029b Merged revisions 66277 via svnmerge from by Benjamin Peterson · 16 years ago
- 7e958d1 I modified the tests a bit to account for unicode string by Amaury Forgeot d'Arc · 16 years ago
- 589b795 Merged revisions 65958 via svnmerge from by Mark Dickinson · 16 years ago
- 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
- 38bbc48 Merged revisions 64981 via svnmerge from by Mark Dickinson · 16 years ago
- 65fe25e Merged revisions 64974 via svnmerge from by Mark Dickinson · 16 years ago
- 79e4803 remove test.support.have_unicode by Benjamin Peterson · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 17 years ago
- 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 17 years ago
- 7b69c6c Restrict format presentation types to those specified in the 'Standard Format Specifiers' section of PEP 3101. by Eric Smith · 17 years ago
- 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
- b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
- 827b35c Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. by Christian Heimes · 17 years ago
- 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
- 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
- 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
- 5d36a55 Whitespace normalization. by Tim Peters · 19 years ago
- ba283e2 This is my patch: by Michael W. Hudson · 19 years ago