1. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 20 years ago
  2. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  3. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  4. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  5. 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 20 years ago
  6. 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 20 years ago
  7. ca0d2cb Add a missing line continuation character. by Thomas Heller · 20 years ago
  8. 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 20 years ago
  9. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  10. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  11. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  12. a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
  13. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  14. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  15. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  16. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  17. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  18. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  19. 91879ab PyUnicode_Join(): Bozo Alert. While this is chugging along, it may by Tim Peters · 20 years ago
  20. 05eba1f PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do by Tim Peters · 20 years ago
  21. 894c512 PyUnicode_Join(): Missed a spot where I intended a cast from size_t to by Tim Peters · 20 years ago
  22. 8ce9f16 PyUnicode_Join(): Two primary aims: by Tim Peters · 20 years ago
  23. d2afee4 Fix docstring typo. by Raymond Hettinger · 20 years ago
  24. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  25. 674f241 SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) by Raymond Hettinger · 20 years ago
  26. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 20 years ago
  27. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  28. f076953 SF patch #1005778, Fix seg fault if list object is modified during list.index() by Neal Norwitz · 20 years ago
  29. 5e89795 This is my patch by Michael W. Hudson · 20 years ago
  30. 651dd52 Previous commit was viewed as "perverse". Changed to just cast the unused by Brett Cannon · 20 years ago
  31. feec453 Bug 1003935: xrange overflows by Tim Peters · 20 years ago
  32. d976ab7 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  33. 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 20 years ago
  34. 79f7ad2 Fixed some compiler warnings. by Armin Rigo · 20 years ago
  35. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  36. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  37. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  38. 6d3265d Be more careful about maintaining the invariants; it was actually by Fred Drake · 20 years ago
  39. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  40. 5ad28e1 Tweak previous patch to silence a warning about the unused left value in the by Brett Cannon · 20 years ago
  41. f8df9a8 Add a missing decref. by Michael W. Hudson · 20 years ago
  42. 8fc4a91 list_ass_slice(): Document the obscure new intent that deleting a slice by Tim Peters · 20 years ago
  43. 7357222 list_ass_slice(): The difference between "recycle" and "recycled" was by Tim Peters · 20 years ago
  44. 8d9eb10 Armin asked for a list_ass_slice review in his checkin, so here's the result. by Tim Peters · 20 years ago
  45. 1dd04a0 This is a reorganization of list_ass_slice(). It should probably be reviewed, by Armin Rigo · 20 years ago
  46. a37bbf2 What if you call lst.__init__() while it is being sorted? :-) by Armin Rigo · 20 years ago
  47. c0aaa2d * Simplify and speed-up list_resize(). Relying on the newly documented by Raymond Hettinger · 20 years ago
  48. 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago
  49. f414fc4 Minor memory leak. by Armin Rigo · 20 years ago
  50. 51b4ade Fix obscure breakage (relative to 2.3) in listsort: the test for list by Tim Peters · 20 years ago
  51. b38e2b6 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  52. 3986d4e PyList_New(): we went to all the trouble of computing and bounds-checking by Tim Peters · 20 years ago
  53. d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 20 years ago
  54. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  55. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  56. 126b44c Fix a copy&paste typo. by Marc-André Lemburg · 20 years ago
  57. 1dffb12 .encode()/.decode() patch part 2. by Marc-André Lemburg · 20 years ago
  58. d2d4598 Allow string and unicode return types from .encode()/.decode() by Marc-André Lemburg · 20 years ago
  59. 739a8f8 Fix a couple of signed/unsigned comparison warnings by Neal Norwitz · 20 years ago
  60. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  61. bdcb941 SF bug #978308, Spurious errors taking bool of dead pro by Neal Norwitz · 20 years ago
  62. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  63. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  64. e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 20 years ago
  65. 8d97e33 Patch #966493: Cleanup generator/eval_frame exposure. by Martin v. Löwis · 20 years ago
  66. a006c37 SF bug #980419: int left-shift causes memory leak by Raymond Hettinger · 20 years ago
  67. 8d726ee Cosmetic spacing fix. by Raymond Hettinger · 20 years ago
  68. d56cbe5 Fix leak found by Eric Huss. by Raymond Hettinger · 20 years ago
  69. 9e1bfe7 Disabling end-of-loop code not reached warning on SunPro by Nicholas Bastin · 20 years ago
  70. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
  71. 148a63f Remove a function no longer in use. by Raymond Hettinger · 20 years ago
  72. 47edb4b Remove unnecessary GC support. Sets cannot have cycles. by Raymond Hettinger · 20 years ago
  73. 6c7a00f * Factor out PyObject_SelfIter(). by Raymond Hettinger · 20 years ago
  74. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  75. 51ffac6 dump HAVE_FOPENRF stuff - obsolete by Skip Montanaro · 20 years ago
  76. c978633 Futher improvements to frozenset hashing (based on Yitz Gale's battery of by Raymond Hettinger · 20 years ago
  77. 27e403e Fixups to the hash function for frozensets. by Raymond Hettinger · 20 years ago
  78. 57c2d93 Add a final permutation step to the tuple hash function. by Raymond Hettinger · 20 years ago
  79. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  80. b5d7702 whoops, I wanted that commented out by default, will add doc to Misc by Neal Norwitz · 20 years ago
  81. 7eb3c91 SF bug 881641, make it easier to use valgrind by Neal Norwitz · 20 years ago
  82. 41627bf Reword message by Andrew M. Kuchling · 20 years ago
  83. 204d786 Fix exception wording by Andrew M. Kuchling · 20 years ago
  84. 4ec44e8 Replaced arbitrary addend in tuple_hash with one that is known to generate by Raymond Hettinger · 20 years ago
  85. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  86. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  87. 41bd022 SF bug #942952: Weakness in tuple hash by Raymond Hettinger · 20 years ago
  88. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  89. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  90. d70ad8a Update docstring for dict.update() to match the new realities. by Walter Dörwald · 20 years ago
  91. 08678a1 Remove float_compare as per by Michael W. Hudson · 20 years ago
  92. 10c6606 SF bug #952866: "can't multiply sequence *by* non-int" by Raymond Hettinger · 20 years ago
  93. fdfe618 Nits: by Raymond Hettinger · 20 years ago
  94. 0468e41 SF patch #947476: Apply freelist technique to lists by Raymond Hettinger · 20 years ago
  95. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago
  96. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  97. 45d0b5c Use Py_RETURN_NONE macro where applicable. by Raymond Hettinger · 20 years ago
  98. 501f02c Small refactoring saving one function() and eliminating some indirection. by Raymond Hettinger · 20 years ago
  99. 40a0382 * Specialize ins1() into app1() for appends. Saves several unnecessary by Raymond Hettinger · 20 years ago
  100. 4057483 SF Patch #926375: Remove a useless UTF-16 support code that is never by Hye-Shik Chang · 20 years ago