1. 9dcb17c Fix frozenset() ref count and a comment typo. by Raymond Hettinger · 19 years ago
  2. 934d63e Comment on the set_swap_bodies() helper function. by Raymond Hettinger · 19 years ago
  3. 9f1a679 Revised the set() and frozenset() implementaion to use its own internal by Raymond Hettinger · 19 years ago
  4. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  5. 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
  6. ecc6e6a SF bug 1185883: PyObject_Realloc can't safely take over a block currently by Tim Peters · 19 years ago
  7. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 19 years ago
  8. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  9. bff60ae Insert missing flag. by Raymond Hettinger · 19 years ago
  10. bb999b5 SF patch #1200018: Restore GC support to set objects by Raymond Hettinger · 19 years ago
  11. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  12. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  13. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
  14. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  15. 186e739 SF patch #1200051: Small optimization for PyDict_Merge() by Raymond Hettinger · 19 years ago
  16. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  17. c8d907c As per discussion on python-dev, descriptors defined in C with a NULL setter by Barry Warsaw · 19 years ago
  18. 1356f78 SF bug #1183742: PyDict_Copy() can return non-NULL value on error by Raymond Hettinger · 19 years ago
  19. e2749cb Fix for rather inaccurately titled bug by Michael W. Hudson · 19 years ago
  20. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 19 years ago
  21. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  22. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  23. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 19 years ago
  24. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 19 years ago
  25. ee319f6 Fix by Michael W. Hudson · 19 years ago
  26. 07ead17 Code simplification -- eliminate lookup when value is known in advance. by Raymond Hettinger · 20 years ago
  27. faa7648 More bug #1077106 stuff, sorry -- modem induced impatiece! by Michael W. Hudson · 20 years ago
  28. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  29. 5d01aa4 Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 20 years ago
  30. 193814c Small boost to PySequence_Fast(). Lists build faster than tuples for by Raymond Hettinger · 20 years ago
  31. e6bdb37 Add missing decref. by Raymond Hettinger · 20 years ago
  32. 4d01259 SF bug #1085744: Performance issues with PySequence_Tuple() by Raymond Hettinger · 20 years ago
  33. 6651748 Remove PyRange_New(). by Raymond Hettinger · 20 years ago
  34. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  35. 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 20 years ago
  36. f8e74b1 If close() fails in file_dealloc, then print an error message to by Peter Astrand · 20 years ago
  37. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  38. 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 20 years ago
  39. 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 20 years ago
  40. 204bd6d Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. by Marc-André Lemburg · 20 years ago
  41. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  42. 6429a47 Use Py_CLEAR(). Add unrelated test. by Raymond Hettinger · 20 years ago
  43. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  44. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 20 years ago
  45. 927a57f Ensure negative offsets cannot be passed to buffer(). When composing by Neil Schemenauer · 20 years ago
  46. fb6ba07 Fix buffer offset calculation (need to compute it before changing by Neil Schemenauer · 20 years ago
  47. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 20 years ago
  48. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  49. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  50. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  51. 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 20 years ago
  52. 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 20 years ago
  53. ca0d2cb Add a missing line continuation character. by Thomas Heller · 20 years ago
  54. 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 20 years ago
  55. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  56. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  57. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  58. a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
  59. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  60. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  61. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  62. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  63. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  64. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  65. 91879ab PyUnicode_Join(): Bozo Alert. While this is chugging along, it may by Tim Peters · 20 years ago
  66. 05eba1f PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do by Tim Peters · 20 years ago
  67. 894c512 PyUnicode_Join(): Missed a spot where I intended a cast from size_t to by Tim Peters · 20 years ago
  68. 8ce9f16 PyUnicode_Join(): Two primary aims: by Tim Peters · 20 years ago
  69. d2afee4 Fix docstring typo. by Raymond Hettinger · 20 years ago
  70. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  71. 674f241 SF Patch #1007087: Return new string for single subclass joins (Bug #1001011) by Raymond Hettinger · 20 years ago
  72. 70aa1f2 Fix repr for negative imaginary part. Fixes #1013908. by Martin v. Löwis · 20 years ago
  73. bf60875 Patch #980082: Missing INCREF in PyType_Ready. by Martin v. Löwis · 20 years ago
  74. f076953 SF patch #1005778, Fix seg fault if list object is modified during list.index() by Neal Norwitz · 20 years ago
  75. 5e89795 This is my patch by Michael W. Hudson · 20 years ago
  76. 651dd52 Previous commit was viewed as "perverse". Changed to just cast the unused by Brett Cannon · 20 years ago
  77. feec453 Bug 1003935: xrange overflows by Tim Peters · 20 years ago
  78. d976ab7 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  79. 618fbf5 This was quite a dark bug in my recent in-place string concatenation by Armin Rigo · 20 years ago
  80. 79f7ad2 Fixed some compiler warnings. by Armin Rigo · 20 years ago
  81. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  82. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  83. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  84. 6d3265d Be more careful about maintaining the invariants; it was actually by Fred Drake · 20 years ago
  85. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  86. 5ad28e1 Tweak previous patch to silence a warning about the unused left value in the by Brett Cannon · 20 years ago
  87. f8df9a8 Add a missing decref. by Michael W. Hudson · 20 years ago
  88. 8fc4a91 list_ass_slice(): Document the obscure new intent that deleting a slice by Tim Peters · 20 years ago
  89. 7357222 list_ass_slice(): The difference between "recycle" and "recycled" was by Tim Peters · 20 years ago
  90. 8d9eb10 Armin asked for a list_ass_slice review in his checkin, so here's the result. by Tim Peters · 20 years ago
  91. 1dd04a0 This is a reorganization of list_ass_slice(). It should probably be reviewed, by Armin Rigo · 20 years ago
  92. a37bbf2 What if you call lst.__init__() while it is being sorted? :-) by Armin Rigo · 20 years ago
  93. c0aaa2d * Simplify and speed-up list_resize(). Relying on the newly documented by Raymond Hettinger · 20 years ago
  94. 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago
  95. f414fc4 Minor memory leak. by Armin Rigo · 20 years ago
  96. 51b4ade Fix obscure breakage (relative to 2.3) in listsort: the test for list by Tim Peters · 20 years ago
  97. b38e2b6 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  98. 3986d4e PyList_New(): we went to all the trouble of computing and bounds-checking by Tim Peters · 20 years ago
  99. d25c650 Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__(). by Marc-André Lemburg · 20 years ago
  100. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago