1. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  2. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  3. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 9 years ago
  4. 6083a4b Re #18521: remove assignments of variables that are immediately reassigned. by Georg Brandl · 11 years ago
  5. 7b25135 Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64 by Victor Stinner · 11 years ago
  6. 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
  7. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  8. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  9. 68af50b Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strtod, and PyOS_ascii_atof. by Eric Smith · 14 years ago
  10. f41d29a Merged revisions 77691,77698,77713-77714 via svnmerge from by Mark Dickinson · 14 years ago
  11. 3b38df2 Move some comments to more appropriate places by Mark Dickinson · 15 years ago
  12. bd16edd Refactor to remove duplicated nan/inf parsing code in by Mark Dickinson · 15 years ago
  13. 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
  14. 129ab1d Merged revisions 72257 via svnmerge from by Mark Dickinson · 15 years ago
  15. 725bfd8 Issue #5914: Add new C-API function PyOS_string_to_double, to complement by Mark Dickinson · 15 years ago
  16. f489caf Issue #5859: Remove use of fixed-length buffers for float formatting by Mark Dickinson · 15 years ago
  17. d3ca557 Issue #5864: Fix problem with empty code formatting for floats, by Mark Dickinson · 15 years ago
  18. 6dc46f5 Merged revisions 72040 via svnmerge from by Eric Smith · 15 years ago
  19. cc32a11 Issue #5835: Deprecate PyOS_ascii_formatd. by Eric Smith · 15 years ago
  20. ce95e56 Merged revisions 71976 via svnmerge from by Mark Dickinson · 15 years ago
  21. 6d65df1 Internal plumbing changes for float parsing: by Mark Dickinson · 15 years ago
  22. ad476da Issue #5816: Simplify code for parsing and printing of complex numbers. by Mark Dickinson · 15 years ago
  23. 3370cce Issue 5780: Fix test_float failures for legacy style float repr. by Mark Dickinson · 15 years ago
  24. 193125a Simplify PyOS_double_to_string. by Eric Smith · 15 years ago
  25. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  26. a3b1ac8 Added ',' thousands grouping to int.__format__. See PEP 378. by Eric Smith · 15 years ago
  27. 2ad79e8 Merged revisions 65125 via svnmerge from by Eric Smith · 16 years ago
  28. 6d7e7a7 Merged revisions 64491 via svnmerge from by Eric Smith · 16 years ago
  29. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  30. 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
  31. b2c7af8 Merged revisions 62586 via svnmerge from by Eric Smith · 16 years ago
  32. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  33. c3f30c4 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from by Christian Heimes · 16 years ago
  34. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 16 years ago
  35. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  36. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  37. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  38. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  39. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  40. d39d861 Fix icc warnings: strlen() returns size_t by Neal Norwitz · 18 years ago
  41. 0e7a0ed Fix compiler warnings by Neal Norwitz · 18 years ago
  42. e7214a1 Get float() to be more portable across platforms. Disable hex strings. by Neal Norwitz · 18 years ago
  43. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago