1. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  2. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  3. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  4. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  5. cb39d1f Issue 19933: Provide default argument for ndigits in round. Patch by Vajrasky Kok. by Steve Dower · 9 years ago
  6. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  7. 101447b fix up import style by Benjamin Peterson · 9 years ago
  8. c19ed37 remove redundant test by Benjamin Peterson · 9 years ago
  9. a915723 fix potential refleak in PyFloat_AsDouble (closes #23590) by Benjamin Peterson · 9 years ago
  10. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  11. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  12. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  13. 89e6d38 Remove untests for non-existent functionality. by Mark Dickinson · 12 years ago
  14. 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 · 12 years ago
  15. 2903772 merge 3.2 by Benjamin Peterson · 13 years ago
  16. b3b8ba6 bring is_integer into tested existence by Benjamin Peterson · 13 years ago
  17. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  18. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  19. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  20. 67ebabd Removed fcmp and FUZZ from test.support, following the discussion on python-dev: by Eli Bendersky · 14 years ago
  21. 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 14 years ago
  22. 0169af1 Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  23. 3315438 Backout broken backport. (Sorry.) by Mark Dickinson · 14 years ago
  24. 11e77ff Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  25. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  26. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  27. 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
  28. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  29. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  30. a813a63 Merged revisions 86003 via svnmerge from by Brian Curtin · 14 years ago
  31. 076623b Fix ResourceWarning. Use context manager to properly close file. by Brian Curtin · 14 years ago
  32. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  33. e401c68 Merged revisions 82461 via svnmerge from by Benjamin Peterson · 14 years ago
  34. 6ded1d5 Merged revisions 82117 via svnmerge from by Mark Dickinson · 14 years ago
  35. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  36. 5daab45 Merged revisions 79804 via svnmerge from by Mark Dickinson · 14 years ago
  37. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  38. c2d8689 Merged revisions 78166 via svnmerge from by Mark Dickinson · 15 years ago
  39. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  40. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  41. 4667251 Merged revisions 77452 via svnmerge from by Mark Dickinson · 15 years ago
  42. 81612e8 Merged revisions 77410,77421,77450-77451 via svnmerge from by Mark Dickinson · 15 years ago
  43. 9ab44b5 Merged revisions 77139-77140 via svnmerge from by Mark Dickinson · 15 years ago
  44. 8a10ecc Merged revisions 76632 via svnmerge from by Eric Smith · 15 years ago
  45. ae31a7c Merged revisions 76485 via svnmerge from by Mark Dickinson · 15 years ago
  46. 4ca33d1 Merged revisions 76483 via svnmerge from by Mark Dickinson · 15 years ago
  47. be0fdac Merged revisions 75890 via svnmerge from by Mark Dickinson · 15 years ago
  48. 70ec8ee Remove extra blank line accidentally introduced in r75885 by Mark Dickinson · 15 years ago
  49. ee26c98 Merged revisions 75885 via svnmerge from by Mark Dickinson · 15 years ago
  50. a9023be Merged revisions 75883 via svnmerge from by Mark Dickinson · 15 years ago
  51. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  52. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  53. bd16edd Refactor to remove duplicated nan/inf parsing code in by Mark Dickinson · 15 years ago
  54. d1ec8b2 Merged revisions 72564 via svnmerge from by Mark Dickinson · 15 years ago
  55. 741191f Issue #3382. float 'F' formatting no longer maps to 'f'. This only affects nan and inf. by Eric Smith · 15 years ago
  56. 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 · 15 years ago
  57. d3ca557 Issue #5864: Fix problem with empty code formatting for floats, by Mark Dickinson · 15 years ago
  58. e6a076d Issue #1869 (and 4707, 5118, 5473, 1456775): use the new by Mark Dickinson · 15 years ago
  59. 7efad9e Sort out some confusion in test_float.py: the two by Mark Dickinson · 15 years ago
  60. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  61. 2808d3c Merged revisions 71627 via svnmerge from by Benjamin Peterson · 15 years ago
  62. 4a1f593 Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to by Mark Dickinson · 16 years ago
  63. d43029b Merged revisions 66277 via svnmerge from by Benjamin Peterson · 16 years ago
  64. 7e958d1 I modified the tests a bit to account for unicode string by Amaury Forgeot d'Arc · 16 years ago
  65. 589b795 Merged revisions 65958 via svnmerge from by Mark Dickinson · 16 years ago
  66. 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
  67. 38bbc48 Merged revisions 64981 via svnmerge from by Mark Dickinson · 16 years ago
  68. 65fe25e Merged revisions 64974 via svnmerge from by Mark Dickinson · 16 years ago
  69. 79e4803 remove test.support.have_unicode by Benjamin Peterson · 16 years ago
  70. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  71. 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 · 16 years ago
  72. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  73. 7b69c6c Restrict format presentation types to those specified in the 'Standard Format Specifiers' section of PEP 3101. by Eric Smith · 17 years ago
  74. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  75. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  76. 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
  77. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  78. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  79. 11fe3e0 Fixed test name. by Eric Smith · 17 years ago
  80. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  81. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  82. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  83. 5d36a55 Whitespace normalization. by Tim Peters · 19 years ago
  84. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago