1. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago
  2. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  3. 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 18 years ago
  4. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  5. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  6. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  7. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  8. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  9. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  10. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 18 years ago
  11. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  12. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  13. b2da01b Fix icc warnings: remove unused variable by Neal Norwitz · 19 years ago
  14. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  15. b78a5fc Fix bug by Michael W. Hudson · 19 years ago
  16. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 19 years ago
  17. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  18. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  19. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 20 years ago
  20. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  21. 739a8f8 Fix a couple of signed/unsigned comparison warnings by Neal Norwitz · 20 years ago
  22. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  23. 08678a1 Remove float_compare as per by Michael W. Hudson · 20 years ago
  24. 6bee23c Oops, didn't mean to commit the removal of float_compare! by Michael W. Hudson · 20 years ago
  25. 957f977 Pass a variable that actually exists to PyFPE_END_PROTECT in by Michael W. Hudson · 20 years ago
  26. d3b33b5 "Fix" (for certain configurations of the planets, including by Michael W. Hudson · 20 years ago
  27. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
  28. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  29. f466793 SF patch 703666: Several objects don't decref tmp on failure in subtype_new by Raymond Hettinger · 21 years ago
  30. e87568d SF bug 705231: Assertion failed, python aborts. by Tim Peters · 21 years ago
  31. f1ed934 _PyFloat_Pack4(): Removed needless call of floor(). by Tim Peters · 21 years ago
  32. 9905b94 New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a by Tim Peters · 21 years ago
  33. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 21 years ago
  34. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 21 years ago
  35. 7d79124 float_int(): Some systems raise an exception if a double is cast to by Tim Peters · 22 years ago
  36. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  37. 2c77e90 Improve exception message raised by PyFloat_AsDouble if the object does not by Neil Schemenauer · 22 years ago
  38. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  39. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  40. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  41. 71390a9 clarify message when raising TypeError to indicate that float() accepts by Skip Montanaro · 22 years ago
  42. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 22 years ago
  43. 77d8a4f float_floor_div: An expression like 3.//1j crashed the interpreter, or by Tim Peters · 23 years ago
  44. 63a3571 float_int_div(): For clarity, move this closer to the other float by Tim Peters · 23 years ago
  45. 97019e4 PyFloat_AsStringEx(): This function takes an output char* but doesn't by Tim Peters · 23 years ago
  46. af8aef9 PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for by Barry Warsaw · 23 years ago
  47. 4e8ab5d float_divmod(): the code wasn't sick enough to stop the MS optimizer by Tim Peters · 23 years ago
  48. d2e40d6 SF bug #477221: abs and divmod act oddly with -0.0 by Tim Peters · 23 years ago
  49. faf0cd2 float_abs() again: Guido pointed out that this could screw up in the by Tim Peters · 23 years ago
  50. d2364e8 SF bug #477221: abs and divmod act oddly with -0.0. by Tim Peters · 23 years ago
  51. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  52. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  53. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  54. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  55. 0280cf7 More bug 460020: when F is a subclass of float, disable the unary plus by Tim Peters · 23 years ago
  56. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 23 years ago
  57. 97f4a33 Better error msg for 3-arg pow with a float argument. by Tim Peters · 23 years ago
  58. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  59. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  60. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  61. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  62. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
  63. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  64. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  65. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  66. 96685bf float_pow: Put *all* of the burden on the libm pow in normal by Tim Peters · 23 years ago
  67. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  68. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  69. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  70. 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 23 years ago
  71. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  72. 7069512 When 1.6 boosted the # of digits produced by repr(float), repr(complex) by Tim Peters · 23 years ago
  73. 01c6526 Avoid giving prototypes on Solaris. by Martin v. Löwis · 23 years ago
  74. 2492a20 SF patch 103543 from tg@freebsd.org: by Jeremy Hylton · 23 years ago
  75. f916e7a Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  76. 010b0cc Fix a silly bug in float_pow. Sorry Tim. by Neil Schemenauer · 24 years ago
  77. 32117e5 Make float a new style number type. by Neil Schemenauer · 24 years ago
  78. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  79. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  80. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  81. 858346e Replace SIGFPE paranoia around strtod and atof. I don't believe these by Tim Peters · 24 years ago
  82. ef14d73 Fix for SF bug 110624: float literals behave inconsistently. by Tim Peters · 24 years ago
  83. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  84. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  85. 67c1a04 PyFloat_FromString(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  86. 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 24 years ago
  87. a248fb6 Clean up a warning on Win64. The downcast of the strlen size_t by Trent Mick · 24 years ago
  88. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  89. 1f0968c Remove legacy use of __SC__; no longer needed now that ANSI source is by Fred Drake · 24 years ago
  90. fd99de6 ANSI-fication of the sources. by Fred Drake · 24 years ago
  91. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  92. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  93. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  94. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  95. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  96. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  97. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  98. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  99. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  100. 57072eb Implement the other easy thing: repr() of a float now uses %.17g, by Guido van Rossum · 25 years ago