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