1. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  2. acb1424 The key to the various sort columns got lost. Pulled from by Skip Montanaro · 19 years ago
  3. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  4. ba3e6ec A minor fix for 64-bit platforms: when __len__() returns Python int by Guido van Rossum · 19 years ago
  5. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 19 years ago
  6. c404ff2 patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 19 years ago
  7. ab61923 Fix bug in last checkin (2.231). To match previous behavior, unicode by Neil Schemenauer · 19 years ago
  8. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  9. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  10. 9c1491f * Add a fast equality check path for frozensets where the hash value has by Raymond Hettinger · 19 years ago
  11. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  12. d8e1338 Add shortcuts for a|a and a&a. by Raymond Hettinger · 19 years ago
  13. f81e450 Fix nits. by Raymond Hettinger · 19 years ago
  14. f408ddf Results of a line-by-line comparison back to dictobject.c. by Raymond Hettinger · 19 years ago
  15. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 19 years ago
  16. 994c2c1 DECREF --> XDECREF by Raymond Hettinger · 19 years ago
  17. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  18. ce8185e More function re-ordering (placing like functions together). by Raymond Hettinger · 19 years ago
  19. ed6c1ef * Bring lookkey() and lookkey_string() closer to dict version. by Raymond Hettinger · 19 years ago
  20. 0014822 Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternext by Phillip J. Eby · 19 years ago
  21. b02c35e * Fix SF #1257731. Make __contains__(), remove(), and discard() only do by Raymond Hettinger · 19 years ago
  22. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  23. c991db2 * Add short-circuit code for in-place operations with self (such as by Raymond Hettinger · 19 years ago
  24. bc841a1 * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. by Raymond Hettinger · 19 years ago
  25. 99220fa * Removed checked_error flag which no longer provides any benefit. by Raymond Hettinger · 19 years ago
  26. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  27. fe889f3 Factor away a redundant clear() function. by Raymond Hettinger · 19 years ago
  28. a580c47 * Improve a variable name: entry0 --> table. by Raymond Hettinger · 19 years ago
  29. a9d9936 * Move copyright notice to top and indicate derivation from sets.py and by Raymond Hettinger · 19 years ago
  30. 67962ab Model set.pop() after dict.popitem(). by Raymond Hettinger · 19 years ago
  31. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  32. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 19 years ago
  33. e295676 Fix build on gcc: PySetIter_Type should be static in definition part also. by Hye-Shik Chang · 19 years ago
  34. 06d8cf8 Improve variable names. by Raymond Hettinger · 19 years ago
  35. 9dcb17c Fix frozenset() ref count and a comment typo. by Raymond Hettinger · 19 years ago
  36. 934d63e Comment on the set_swap_bodies() helper function. by Raymond Hettinger · 19 years ago
  37. 9f1a679 Revised the set() and frozenset() implementaion to use its own internal by Raymond Hettinger · 19 years ago
  38. de7990b SF bug #1238681: freed pointer is used in longobject.c:long_pow(). by Tim Peters · 19 years ago
  39. 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
  40. ecc6e6a SF bug 1185883: PyObject_Realloc can't safely take over a block currently by Tim Peters · 19 years ago
  41. 3095ad0 Apparently some compiler gives a warning on by Michael W. Hudson · 19 years ago
  42. 3296e69 SF bug #1224347: int/long unification and hex() by Raymond Hettinger · 19 years ago
  43. bff60ae Insert missing flag. by Raymond Hettinger · 19 years ago
  44. bb999b5 SF patch #1200018: Restore GC support to set objects by Raymond Hettinger · 19 years ago
  45. 5661699 fix object.__divmod__.__doc__ by Anthony Baxter · 19 years ago
  46. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  47. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
  48. 7726dc0 Fixed a quite misleading comment: a "not" should not have been there. by Armin Rigo · 19 years ago
  49. 186e739 SF patch #1200051: Small optimization for PyDict_Merge() by Raymond Hettinger · 19 years ago
  50. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  51. c8d907c As per discussion on python-dev, descriptors defined in C with a NULL setter by Barry Warsaw · 19 years ago
  52. 1356f78 SF bug #1183742: PyDict_Copy() can return non-NULL value on error by Raymond Hettinger · 19 years ago
  53. e2749cb Fix for rather inaccurately titled bug by Michael W. Hudson · 19 years ago
  54. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 19 years ago
  55. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 19 years ago
  56. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  57. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 19 years ago
  58. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 19 years ago
  59. ee319f6 Fix by Michael W. Hudson · 19 years ago
  60. 07ead17 Code simplification -- eliminate lookup when value is known in advance. by Raymond Hettinger · 19 years ago
  61. faa7648 More bug #1077106 stuff, sorry -- modem induced impatiece! by Michael W. Hudson · 19 years ago
  62. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  63. 5d01aa4 Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 20 years ago
  64. 193814c Small boost to PySequence_Fast(). Lists build faster than tuples for by Raymond Hettinger · 20 years ago
  65. e6bdb37 Add missing decref. by Raymond Hettinger · 20 years ago
  66. 4d01259 SF bug #1085744: Performance issues with PySequence_Tuple() by Raymond Hettinger · 20 years ago
  67. 6651748 Remove PyRange_New(). by Raymond Hettinger · 20 years ago
  68. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  69. 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 20 years ago
  70. f8e74b1 If close() fails in file_dealloc, then print an error message to by Peter Astrand · 20 years ago
  71. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  72. 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 20 years ago
  73. 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 20 years ago
  74. 204bd6d Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. by Marc-André Lemburg · 20 years ago
  75. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  76. 6429a47 Use Py_CLEAR(). Add unrelated test. by Raymond Hettinger · 20 years ago
  77. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  78. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 20 years ago
  79. 927a57f Ensure negative offsets cannot be passed to buffer(). When composing by Neil Schemenauer · 20 years ago
  80. fb6ba07 Fix buffer offset calculation (need to compute it before changing by Neil Schemenauer · 20 years ago
  81. e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 20 years ago
  82. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  83. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  84. 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 20 years ago
  85. 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 20 years ago
  86. 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 20 years ago
  87. ca0d2cb Add a missing line continuation character. by Thomas Heller · 20 years ago
  88. 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 20 years ago
  89. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  90. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  91. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  92. a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
  93. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  94. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  95. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  96. cd97da3 long_pow(): Fix more instances of leaks in error cases. by Tim Peters · 20 years ago
  97. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  98. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  99. 91879ab PyUnicode_Join(): Bozo Alert. While this is chugging along, it may by Tim Peters · 20 years ago
  100. 05eba1f PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't do by Tim Peters · 20 years ago