1. 3324247 Revert accidental changes to Objects/floatobject.c by Mark Dickinson · 15 years ago
  2. 7abf8d4 The SSE2 detection and enabling could potentially cause by Mark Dickinson · 15 years ago
  3. e6a076d Issue #1869 (and 4707, 5118, 5473, 1456775): use the new by Mark Dickinson · 15 years ago
  4. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  5. 2808d3c Merged revisions 71627 via svnmerge from by Benjamin Peterson · 15 years ago
  6. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  7. 0156dab Remove attempted long->int conversions in py3k version of float.as_integer_ratio. by Mark Dickinson · 16 years ago
  8. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  9. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 16 years ago
  10. baa4546 Add missing Py_CHARMASK when calling isspace(). by Kristján Valur Jónsson · 16 years ago
  11. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  12. 4561257 Merged revisions 66552-66553 via svnmerge from by Andrew MacIntyre · 16 years ago
  13. 42a72ee Merged revisions 65964 via svnmerge from by Mark Dickinson · 16 years ago
  14. d8fa68b fix cut and paste error in a comment by Gregory P. Smith · 16 years ago
  15. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  16. 943f339 Issue #3369: fix memory leak in floatobject.c. Thanks Kristján Jónsson by Mark Dickinson · 16 years ago
  17. 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
  18. 65fe25e Merged revisions 64974 via svnmerge from by Mark Dickinson · 16 years ago
  19. 5c960b8 Revert 64451. by Raymond Hettinger · 16 years ago
  20. d11a443 Merge 64438: hex/oct/bin can show floats exactly. by Raymond Hettinger · 16 years ago
  21. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  22. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  23. c4352b0 Issue 2801: fix bug in float.is_integer where ValueError was incorrectly by Mark Dickinson · 16 years ago
  24. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  25. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 17 years ago
  26. ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 17 years ago
  27. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 17 years ago
  28. 15ebc88 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from by Christian Heimes · 17 years ago
  29. 292d351 Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,60540-60551 via svnmerge from by Christian Heimes · 17 years ago
  30. 7b3ce6a Merged revisions 60441-60474 via svnmerge from by Christian Heimes · 17 years ago
  31. 2685563 Merged revisions 60364-60378 via svnmerge from by Christian Heimes · 17 years ago
  32. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 17 years ago
  33. d32ed6f Merged revisions 59933-59951 via svnmerge from by Christian Heimes · 17 years ago
  34. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  35. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  36. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  37. 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
  38. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  39. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  40. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  41. 3404b3c Check in some documentation tweaks for PEP 3141, add some tests, and implement by Jeffrey Yasskin · 17 years ago
  42. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  43. 6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). by Guido van Rossum · 17 years ago
  44. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  45. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  46. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  47. 447e7c3 Fix memory leak by Neal Norwitz · 17 years ago
  48. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  49. b43daf7 Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. by Guido van Rossum · 17 years ago
  50. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  51. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  52. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  53. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  54. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  55. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  56. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  57. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 18 years ago
  58. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  59. 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 18 years ago
  60. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  61. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  62. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  63. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  64. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  65. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 19 years ago
  66. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  67. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  68. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  69. b2da01b Fix icc warnings: remove unused variable by Neal Norwitz · 19 years ago
  70. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  71. b78a5fc Fix bug by Michael W. Hudson · 19 years ago
  72. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 19 years ago
  73. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  74. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  75. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 20 years ago
  76. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  77. 739a8f8 Fix a couple of signed/unsigned comparison warnings by Neal Norwitz · 20 years ago
  78. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  79. 08678a1 Remove float_compare as per by Michael W. Hudson · 20 years ago
  80. 6bee23c Oops, didn't mean to commit the removal of float_compare! by Michael W. Hudson · 21 years ago
  81. 957f977 Pass a variable that actually exists to PyFPE_END_PROTECT in by Michael W. Hudson · 21 years ago
  82. d3b33b5 "Fix" (for certain configurations of the planets, including by Michael W. Hudson · 21 years ago
  83. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
  84. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  85. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  86. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 21 years ago
  87. f1ed934 _PyFloat_Pack4(): Removed needless call of floor(). by Tim Peters · 22 years ago
  88. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 22 years ago
  89. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  90. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 22 years ago
  91. 7d79124 float_int(): Some systems raise an exception if a double is cast to by Tim Peters · 22 years ago
  92. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  93. 2c77e90 Improve exception message raised by PyFloat_AsDouble if the object does not by Neil Schemenauer · 22 years ago
  94. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  95. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  96. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  97. 71390a9 clarify message when raising TypeError to indicate that float() accepts by Skip Montanaro · 22 years ago
  98. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 23 years ago
  99. 77d8a4f float_floor_div: An expression like 3.//1j crashed the interpreter, or by Tim Peters · 23 years ago
  100. 63a3571 float_int_div(): For clarity, move this closer to the other float by Tim Peters · 23 years ago