summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* User requested changes to the itertools module.Raymond Hettinger2003-02-231-52/+236
* Use 'ISO8859-1' instead of 'ASCII' when testing whether byteswappingWalter Dörwald2003-02-211-5/+5
* flex_complete looks like a private (but callback) function, so make it staticNeal Norwitz2003-02-211-1/+1
* The connect timeout code wasn't working on Windows.Guido van Rossum2003-02-191-12/+13
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-191-1/+1
* os.mkdir() would crash with a Unicode filename and mode param.Mark Hammond2003-02-191-1/+1
* Use __reduce_ex__.Guido van Rossum2003-02-191-45/+36
* save_global(): Trying to resolve module.name can fail for twoTim Peters2003-02-181-3/+5
* Fold some long lines.Guido van Rossum2003-02-181-14/+31
* Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs.Neal Norwitz2003-02-181-1/+1
* Added test_posix (hopefully it works on Windows).Neal Norwitz2003-02-171-130/+64
* Use correct function name to PyArg_ParseTuple("is_package").Neal Norwitz2003-02-171-5/+2
* Make 2 module variables static. Assuming this is correct.Neal Norwitz2003-02-151-2/+2
* cPickle.c, load_build(): Taught cPickle how to pick apartTim Peters2003-02-151-21/+71
* cPickle produces NEWOBJ appropriately now. It still doesn't knowTim Peters2003-02-141-69/+195
* Minor assorted cleanups; no semantic changes.Tim Peters2003-02-131-10/+16
* The version of PyImport_Import() in cPickle is no longer needed (an editedTim Peters2003-02-131-64/+0
* save(): Reformat tail end just for clarity.Tim Peters2003-02-131-16/+17
* Another dummy type.Guido van Rossum2003-02-131-0/+61
* Taught cPickle how to read pickles containing NEWOBJ. This won't getTim Peters2003-02-131-1/+75
* Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle.Tim Peters2003-02-131-5/+9
* Conditionalize another constantAndrew M. Kuchling2003-02-131-0/+2
* socket_inet_aton(): ip_addr was left undefined before use in theTim Peters2003-02-131-9/+9
* Ummm, try to get it right this timeNeal Norwitz2003-02-131-1/+1
* Use configure to check for inet_aton.Neal Norwitz2003-02-131-1/+1
* Addressing SF bug #643005, implement socket.inet_aton() usingGuido van Rossum2003-02-121-1/+17
* 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