1. fba7369 Patch #1050475: Fix various x86_64 build issues by Martin v. Löwis · 20 years ago
  2. 2c45c9a SF patch 1062495: Modules/zipimport.c does not compile on solaris by Raymond Hettinger · 20 years ago
  3. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  4. 80961f3 Fix apparently trivial buffer overflow (SF bug 1060396). by Jeremy Hylton · 20 years ago
  5. 7d112df Bump-up block size. by Raymond Hettinger · 20 years ago
  6. bb9c739 Add error checks for the bz2, cStringIO and operator modules. by Walter Dörwald · 20 years ago
  7. bc1d1b8 gc_list_move(): Make this truly equivalent to remove+append. While by Tim Peters · 20 years ago
  8. e2d5918 gc list function cleanup. by Tim Peters · 20 years ago
  9. cc2a866 handle_weakrefs(): Simplification -- there's no need to make a second by Tim Peters · 20 years ago
  10. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  11. 08ebfec some platforms still need offsetof() from structmember.h by Fred Drake · 20 years ago
  12. a9f6092 Fix and test weak referencing of itertools.tee objects. by Raymond Hettinger · 20 years ago
  13. 3079391 Just remove the #include of signal.h. That it was C++-commented out by Michael W. Hudson · 20 years ago
  14. f7c8d93 Use C89 style comment for old compilers by Neal Norwitz · 20 years ago
  15. 9171f02 Synchronize with PyXML 1.79: by Martin v. Löwis · 20 years ago
  16. 8a560de Patch 977343, Solaris likes sys/loadavg.h. Added support for sys/loadavg.h by Anthony Baxter · 20 years ago
  17. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  18. dcb9d94 Simplify delitem() code by calling rotate() directly instead of using by Raymond Hettinger · 20 years ago
  19. 8da2b01 This is Michiel de Hoon's patch, as attached to the bug report: by Michael W. Hudson · 20 years ago
  20. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  21. c5fa992 Armin's patch to prevent overflows. by Raymond Hettinger · 20 years ago
  22. 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
  23. 880430e Replace structure member before decreffing. by Raymond Hettinger · 20 years ago
  24. d1b3d88 * Bulletproof the method for detecting mutations during iteration. by Raymond Hettinger · 20 years ago
  25. 77e8bf1 Restore the block length and add a comment. by Raymond Hettinger · 20 years ago
  26. 4ca4c7c Clarify the relationship between indices. by Raymond Hettinger · 20 years ago
  27. 61f05fb * Elaborate on the invariant comments and make them more precise. by Raymond Hettinger · 20 years ago
  28. 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
  29. d6e0032 Typos in new comments. by Tim Peters · 20 years ago
  30. d8768d3 Document some reverse-engineered invariants and pragmatic hints. by Tim Peters · 20 years ago
  31. 6f85356 Definition consistency. by Tim Peters · 20 years ago
  32. 1065f75 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  33. 4cda01e * Increase test coverage. by Raymond Hettinger · 20 years ago
  34. 87de0ca Silence a compiler warning by supplying the correct argument type to by Raymond Hettinger · 20 years ago
  35. 855d9a9 Plug a leak and beef-up test coverage. by Raymond Hettinger · 20 years ago
  36. b6aa856 Patch #1009075, bug #952953: allow execve with empty 2nd argument by Armin Rigo · 20 years ago
  37. 9f90439 Patch #1011240: SystemError generated by struct.pack('P', 'foo'). by Armin Rigo · 20 years ago
  38. 9447874 Add docstrings for regular expression objects and methods. by Raymond Hettinger · 20 years ago
  39. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
  40. 8ea5bdf Patch for compilation on IRIX from rwgk on http://python.org/sf/728330 by Trent Mick · 20 years ago
  41. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  42. a708d6e Apply patch from http://python.org/sf/728330 to fix socket module compilation on Solaris 2.6, HP-UX 11, AIX 5.1 and (possibly) some IRIX versions. by Trent Mick · 20 years ago
  43. 9fd5e9a Remove redunandant assertions from last checkin. by Raymond Hettinger · 20 years ago
  44. 658717e SF #1022953: binascii.a2b_hqx("") raises SystemError by Raymond Hettinger · 20 years ago
  45. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  46. 442c9fc SF bug 1017405: the keys() values() and items() DB methods were by Gregory P. Smith · 20 years ago
  47. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 20 years ago
  48. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  49. 4e699d5 Remove mpz, rotor, xreadlines modules by Andrew M. Kuchling · 20 years ago
  50. 57269d0 Remove mpz, rotor, xreadlines modules by Andrew M. Kuchling · 20 years ago
  51. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  52. d311538 win32_urandom(): There's no need to copy the generated byte string, so don't. by Tim Peters · 20 years ago
  53. 9b279a8 win32_urandom(): pass the function name to PyArg_ParseTuple, for better by Tim Peters · 20 years ago
  54. 51eba61 win32_urandom(): Raise ValueError if the argument is negative. by Tim Peters · 20 years ago
  55. 4ad8217 win32_urandom(): Rewrite to Python C standards (hard tabs, function name by Tim Peters · 20 years ago
  56. dc3883f Patch #934711: Expose platform-specific entropy. by Martin v. Löwis · 20 years ago
  57. 6ab78cd SF feature request #992967: array.array objects should support sequences. by Raymond Hettinger · 20 years ago
  58. 269ab62 Fix the spelling of Fredrik Lundh's last name (unless there really is a by Brett Cannon · 20 years ago
  59. e8bbfe4 Patch #1015012. Improve markup and punctuation in libsocket.tex by Dave Cole · 20 years ago
  60. 3203efb Patch #1014930. Expose current parse location to XMLParser. by Dave Cole · 20 years ago
  61. b92b7ed Back out 1.289, which breaks platforms needing addrinfo.h, and by Martin v. Löwis · 20 years ago
  62. 1fa040b SF #1015517, get readline to compile with older compilers by Neal Norwitz · 20 years ago
  63. eb619bb Fix for [ 1010677 ] thread Module Breaks PyGILState_Ensure(), by Mark Hammond · 20 years ago
  64. 07fda7e Updated the socketpair() docstring and documentation to explain that the by Dave Cole · 20 years ago
  65. 0fc8575 Removed unnecessary calls to signal() to ignore SIGPIPE. SIGPIPE is ignored by Dave Cole · 20 years ago
  66. 037b3ee Patch 1012740: cStringIO's truncate doesn't by Tim Peters · 20 years ago
  67. 701abe7 Fail fatally if strdup fails. by Martin v. Löwis · 20 years ago
  68. f5a149a Bug #1005737, #1007249: Fix several build problems and warnings by Hye-Shik Chang · 20 years ago
  69. 4d4dfb7 Patch #1011822: Display errno/strerror for inaccessible files. by Martin v. Löwis · 20 years ago
  70. 78a8acc Patch #914291: Restore locale while readline is running. by Martin v. Löwis · 20 years ago
  71. 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
  72. 6c06cd5 fix a couple problems with the last patch picked up by Michael Hudson by Skip Montanaro · 20 years ago
  73. e506901 Add get_history_item and replace_history_item functions to the readline by Skip Montanaro · 20 years ago
  74. 8d3b9dd Quote \r\n correctly, remove random indentation (patch #1009384). Thanks by Johannes Gijsbers · 20 years ago
  75. 39689c5 make exception propogation more efficient; this avoids having Expat parse by Fred Drake · 20 years ago
  76. 0cb3c63 Patch #1005568: Use _SC_PAGESIZE on Irix. Backported to 2.3. by Martin v. Löwis · 20 years ago
  77. c246cb7 Bug #1001857: socketmodule does not build under cygwin by Jason Tishler · 20 years ago
  78. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  79. ec8c5a9 Bug 1003471: Python 1.5.2 security vulnerability still present in 2.3.4 by Tim Peters · 20 years ago
  80. e5dd162 [Bug #923315] Produce correct result on AIX by Andrew M. Kuchling · 20 years ago
  81. 283b670 add constants for many error values added over the past couple of years by Fred Drake · 20 years ago
  82. 5910d81 Add a missing decref -- PyErr_SetObject increfs the 'object'! by Michael W. Hudson · 20 years ago
  83. 7d6cc5b Fix a leak of a reference on None. by Michael W. Hudson · 20 years ago
  84. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  85. 51fa3b7 Tkapp_New(): Rewrite in C so it compiles again. by Tim Peters · 20 years ago
  86. 1fa649f Patch #986929: Add support for wish -sync and -use options. by Martin v. Löwis · 20 years ago
  87. f901abd allow ctime(), gmtime(), and localtime() to take None as equivalent to an omitted arg by Fred Drake · 20 years ago
  88. 0b49e02 Patch #977074: Move Encode/Decode to the top so gcc can inline them. by Martin v. Löwis · 20 years ago
  89. 0bb8454 Fix the reference count errors revealed by the test suite... by Michael W. Hudson · 20 years ago
  90. cbcff93 Restore compilation on MSVC++ 6.0 by Raymond Hettinger · 20 years ago
  91. a412769 SF bug #808756: refleaks in _hotshot.c. by Armin Rigo · 20 years ago
  92. 31d485c update to Expat 1.95.8 by Fred Drake · 20 years ago
  93. a57ec93 Fix [ 1001018 ]: Windows: setdefaulttimeout causes unnecessary timeouts on by Mark Hammond · 20 years ago
  94. c9f510a Any call to insort_{left,right} with a non-list leaked a reference to None by Michael W. Hudson · 20 years ago
  95. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  96. 014f103 SF bug #999776, zlib home page wrong by Neal Norwitz · 20 years ago
  97. eb34110 Remove CJKCodecs implementation of UTF-7 and UTF-8 codec which by Hye-Shik Chang · 20 years ago
  98. b600fe9 Switch arguments to memset (kudos to MSVC C4318 for finding that) by Martin v. Löwis · 20 years ago
  99. 544f119 Patch #995766: Keyword argument support in cPickle. by Martin v. Löwis · 20 years ago
  100. 7bd33c5 This change implements the following gettext features, as by Gustavo Niemeyer · 20 years ago