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