summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Minor cleanup of new batch-list/dict code.Tim Peters2003-02-121-16/+12
* Add more missing PyErr_NoMemory() after failled memory allocsNeal Norwitz2003-02-112-3/+3
* Implemented batching for dicts in cPickle. This is after two failedTim Peters2003-02-111-30/+119
* Add Str, a subclass of str.Guido van Rossum2003-02-111-0/+58
* Implemented list batching in cPickle.Tim Peters2003-02-111-30/+103
* Unparenting BZ2File, as discussed in SF patch #661796.Gustavo Niemeyer2003-02-111-102/+158
* SF bug 684667: Modules/selectmodule.c returns NULL without exception set.Tim Peters2003-02-111-1/+1
* Patch #676839: Cygwin _iconv_codec module patchJason Tishler2003-02-101-1/+2
* Patch #676837: Cygwin array module patchJason Tishler2003-02-101-1/+2
* Fix memory leak of newstr when putenv() failsNeal Norwitz2003-02-101-0/+1
* Remove duplicate code introduced by fixing bug #678518Neal Norwitz2003-02-101-3/+0
* Remove unused variable.Guido van Rossum2003-02-092-2/+1
* C Code:Raymond Hettinger2003-02-091-124/+248
* Apply logistix's patch fromMichael W. Hudson2003-02-081-3/+43
* timedelta comparison and datetime addition: as the Python implementationTim Peters2003-02-081-4/+4
* Comparison for timedelta, time, date and datetime objects: __eq__ andTim Peters2003-02-071-38/+52
* SF patch #682514, mmapmodule.c write fix for LP64 executablesNeal Norwitz2003-02-071-1/+1
* * Eliminated tuple re-use in imap(). Doing it correctly made the codeRaymond Hettinger2003-02-071-62/+30
* SF bug #681003: itertools issuesRaymond Hettinger2003-02-071-6/+84
* Integrate the patch from expat.h 1.51; needed for some C compilers.Fred Drake2003-02-071-21/+24
* More typo repair.Tim Peters2003-02-051-1/+1
* Typo repair.Tim Peters2003-02-051-4/+4
* cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn'tTim Peters2003-02-041-1/+6
* cPickle now generates proto 2 EXT[124] when appropriate.Tim Peters2003-02-041-2/+67
* Remove forward static reference since it is not requiredNeal Norwitz2003-02-041-3/+1
* Whitespace normalizationNeal Norwitz2003-02-041-1/+1
* Fix for [ 543344 ] Interpreter crashes when recoding; suggestedMarc-André Lemburg2003-02-041-1/+3
* Use size_t instead of int for various variables to preventWalter Dörwald2003-02-041-9/+9
* Typo in comment.Tim Peters2003-02-041-1/+1
* cPickle can load pickles using proto 2 EXT[124] now, but can't yetTim Peters2003-02-041-0/+108
* Rename the extension registry variables to have leading underscores --Guido van Rossum2003-02-041-6/+6
* Typo repair.Tim Peters2003-02-041-1/+1
* Brought some module variables into synch with pickle.py's current values.Tim Peters2003-02-041-16/+47
* load_counted_long(): Changed a ValueError to an UnpicklingError, justTim Peters2003-02-031-15/+1
* - Thanks to Scott David Daniels, a subtle bug in how the zlibGuido van Rossum2003-02-031-12/+45
* PDATA_PUSH and PDATA_APPEND. documented, and reformatted for betterTim Peters2003-02-031-30/+38
* version 4.1.4 (4.1.3 just released)Gregory P. Smith2003-02-031-1/+1
* cPickle support for TUPLE[123]. Incidentally plugged several undetectedTim Peters2003-02-021-84/+210
* Massive edits. If p is a pointer to a struct, and p->f is a pointer toTim Peters2003-02-021-89/+93
* Minor cleanup, mostly adding horizontal whitespace, and breaking apartTim Peters2003-02-021-31/+30
* Implemented proto 2 NEWTRUE and NEWFALSE in cPickle.Tim Peters2003-02-021-2/+34
* Get ossaudiodev to compile on freebsd 4.7Neal Norwitz2003-02-021-0/+18
* Beefed up the tests by putting in more "for proto in protocols:" outerTim Peters2003-02-021-0/+5
* Fix compiler warningNeal Norwitz2003-02-022-1/+2
* dump(): Added asserts that self->proto is sane.Tim Peters2003-02-021-1/+2
* dump(): Fixed a stupid bug in new code. It wasn't possible for the bugTim Peters2003-02-021-1/+1
* Add cPickle support for PROTO. Duplicated PROTO/LONG1/LONG4 code inTim Peters2003-02-021-2/+56
* Fix memory leak: free memory storing the content model passed to theFred Drake2003-02-021-24/+48
* cPickle.c: Full support for the new LONG1 and LONG4. Added comments.Tim Peters2003-02-021-21/+161
* The C pickle now knows how to deal with a proto= argument. AssortedTim Peters2003-02-011-45/+86