1. 646b528 Issue #22463: Backport compiler warning fixes and workarounds by Martin Panter · 9 years ago
  2. 4f23cab Corrections for a/an in code comments and documentation by Martin Panter · 9 years ago
  3. 8d30ad7 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 10 years ago
  4. 6156560 Issue #25678: Copy buffer objects to null-terminated strings. by Serhiy Storchaka · 10 years ago
  5. f050648 fix potential refleak in PyFloat_AsDouble (closes #23590) by Benjamin Peterson · 10 years ago
  6. 3838614 #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. by Ezio Melotti · 12 years ago
  7. 115bc79 Issue #9742: Sneaky fix for build failure on Solaris 9. by Mark Dickinson · 13 years ago
  8. 1abe6cd Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 14 years ago
  9. 874d59e Issue #11144: Fix corner cases where float-to-int conversion unnecessarily returned a long. by Mark Dickinson · 14 years ago
  10. ecf8ec6 Merged revisions 87032 via svnmerge from by Mark Dickinson · 15 years ago
  11. cf76d1f add space by Benjamin Peterson · 15 years ago
  12. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  13. a8ac944 Add back in a line that was unneeded which advanced a pointer, but commented by Brett Cannon · 15 years ago
  14. 6f38175 Remove an unneeded variable increment. by Brett Cannon · 15 years ago
  15. bce3e17 #7482: clarify error message in case of division by zero of float and complex numbers. by Ezio Melotti · 15 years ago
  16. 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
  17. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 16 years ago
  18. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 16 years ago
  19. 8568b19 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 16 years ago
  20. cfaf79c Start to remove _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 16 years ago
  21. 8c3fb39 Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it's not declared in any .h file. by Eric Smith · 16 years ago
  22. b327258 Removed usage of unsafe PyFloat_AsString. by Eric Smith · 16 years ago
  23. bf9ec9b add underscores by Benjamin Peterson · 16 years ago
  24. b1d4585 Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. by Mark Dickinson · 16 years ago
  25. a985a3a 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
  26. 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 16 years ago
  27. df108ca Remove format_float and use _PyOS_double_to_string instead. by Mark Dickinson · 16 years ago
  28. 6d6b220 Backport r71967 changes from py3k to trunk. by Mark Dickinson · 16 years ago
  29. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 16 years ago
  30. 99d36f1 call __float__ on str subclasses #5759 by Benjamin Peterson · 16 years ago
  31. bd7c4ca Use correct capitalization of NaN by Andrew M. Kuchling · 17 years ago
  32. 8c47cab should use macro'ed symbols not direct by Andrew MacIntyre · 17 years ago
  33. d3ffb89 #3777: long(4.2) returned an int, and broke backward compatibility. by Amaury Forgeot d'Arc · 17 years ago
  34. 5c2bb1a issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, so by Mark Dickinson · 17 years ago
  35. 7103aa4 Issue #3008: add instance method float.hex and class method float.fromhex by Mark Dickinson · 17 years ago
  36. 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 17 years ago
  37. bf9f4d8 Issue 3188: accept float('infinity') as well as float('inf'). This by Mark Dickinson · 17 years ago
  38. 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 17 years ago
  39. 30fa13f Fix build on FreeBSD gcc. by Hye-Shik Chang · 17 years ago
  40. e0e7114 Issue 3008: hex/oct/bin can show floats exactly. by Raymond Hettinger · 17 years ago
  41. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  42. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 17 years ago
  43. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  44. e81c376 Issue #2801: fix bug in float.is_integer where ValueError by Mark Dickinson · 17 years ago
  45. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  46. 9fdfaaf Fix compiler warning about finite() missing on Solaris. by Neal Norwitz · 17 years ago
  47. c0a56ff Pluralss only need one s, not 2 (intss -> ints) by Neal Norwitz · 17 years ago
  48. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  49. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  50. 422051a Patch #1953 by Christian Heimes · 18 years ago
  51. 2d1aa33 Simpler solution to handling non-IEEE 754 environments. by Raymond Hettinger · 18 years ago
  52. f985903 Add protection from weirdness while scaling the mantissa to an integer. by Raymond Hettinger · 18 years ago
  53. 1bcb99a Fix int/long typecase. Add check for non-binary floating point. by Raymond Hettinger · 18 years ago
  54. ffc667c labs() takes a long for an input. by Raymond Hettinger · 18 years ago
  55. c9e928a Integer ratio should return ints instead of longs whereever possible. by Raymond Hettinger · 18 years ago
  56. 04c96d5 Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. by Raymond Hettinger · 18 years ago
  57. 796fc31 The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize(). by Christian Heimes · 18 years ago
  58. 0d92443 Fixed some references leaks in sys. by Christian Heimes · 18 years ago
  59. 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 18 years ago
  60. 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 18 years ago
  61. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  62. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  63. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  64. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  65. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 18 years ago
  66. f15c66e The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. by Christian Heimes · 18 years ago
  67. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 18 years ago
  68. dfdfaab Feature #1534 by Christian Heimes · 18 years ago
  69. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  70. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  71. 8b267b5 Remove dead code. This code couldn't be reached because earlier in by Neal Norwitz · 18 years ago
  72. 348dc88 Reverting the patch that tried to fix the issue whereby x**2 raises by Alex Martelli · 19 years ago
  73. 20362a8 x**2 should about equal x*x (including for a float x such that the result is by Alex Martelli · 19 years ago
  74. f94323f Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms by Kristján Valur Jónsson · 19 years ago
  75. 429433b C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places by Skip Montanaro · 19 years ago
  76. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  77. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  78. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  79. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  80. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  81. b2da01b Fix icc warnings: remove unused variable by Neal Norwitz · 20 years ago
  82. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  83. b78a5fc Fix bug by Michael W. Hudson · 20 years ago
  84. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 20 years ago
  85. ba283e2 This is my patch: by Michael W. Hudson · 20 years ago
  86. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 20 years ago
  87. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 21 years ago
  88. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 21 years ago
  89. 739a8f8 Fix a couple of signed/unsigned comparison warnings by Neal Norwitz · 21 years ago
  90. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 21 years ago
  91. 08678a1 Remove float_compare as per by Michael W. Hudson · 21 years ago
  92. 6bee23c Oops, didn't mean to commit the removal of float_compare! by Michael W. Hudson · 21 years ago
  93. 957f977 Pass a variable that actually exists to PyFPE_END_PROTECT in by Michael W. Hudson · 21 years ago
  94. d3b33b5 "Fix" (for certain configurations of the planets, including by Michael W. Hudson · 21 years ago
  95. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 22 years ago
  96. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 22 years ago
  97. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 22 years ago
  98. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 22 years ago
  99. f1ed934 _PyFloat_Pack4(): Removed needless call of floor(). by Tim Peters · 22 years ago
  100. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 22 years ago