| Commit message (Expand) | Author | Age | Files | Lines |
* | User requested changes to the itertools module. | Raymond Hettinger | 2003-02-23 | 1 | -52/+236 |
|
|
* | Use 'ISO8859-1' instead of 'ASCII' when testing whether byteswapping | Walter Dörwald | 2003-02-21 | 1 | -5/+5 |
|
|
* | flex_complete looks like a private (but callback) function, so make it static | Neal Norwitz | 2003-02-21 | 1 | -1/+1 |
|
|
* | The connect timeout code wasn't working on Windows. | Guido van Rossum | 2003-02-19 | 1 | -12/+13 |
|
|
* | - PyEval_GetFrame() is now declared to return a PyFrameObject * | Guido van Rossum | 2003-02-19 | 1 | -1/+1 |
|
|
* | os.mkdir() would crash with a Unicode filename and mode param. | Mark Hammond | 2003-02-19 | 1 | -1/+1 |
|
|
* | Use __reduce_ex__. | Guido van Rossum | 2003-02-19 | 1 | -45/+36 |
|
|
* | save_global(): Trying to resolve module.name can fail for two | Tim Peters | 2003-02-18 | 1 | -3/+5 |
|
|
* | Fold some long lines. | Guido van Rossum | 2003-02-18 | 1 | -14/+31 |
|
|
* | Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs. | Neal Norwitz | 2003-02-18 | 1 | -1/+1 |
|
|
* | Added test_posix (hopefully it works on Windows). | Neal Norwitz | 2003-02-17 | 1 | -130/+64 |
|
|
* | Use correct function name to PyArg_ParseTuple("is_package"). | Neal Norwitz | 2003-02-17 | 1 | -5/+2 |
|
|
* | Make 2 module variables static. Assuming this is correct. | Neal Norwitz | 2003-02-15 | 1 | -2/+2 |
|
|
* | cPickle.c, load_build(): Taught cPickle how to pick apart | Tim Peters | 2003-02-15 | 1 | -21/+71 |
|
|
* | cPickle produces NEWOBJ appropriately now. It still doesn't know | Tim Peters | 2003-02-14 | 1 | -69/+195 |
|
|
* | Minor assorted cleanups; no semantic changes. | Tim Peters | 2003-02-13 | 1 | -10/+16 |
|
|
* | The version of PyImport_Import() in cPickle is no longer needed (an edited | Tim Peters | 2003-02-13 | 1 | -64/+0 |
|
|
* | save(): Reformat tail end just for clarity. | Tim Peters | 2003-02-13 | 1 | -16/+17 |
|
|
* | Another dummy type. | Guido van Rossum | 2003-02-13 | 1 | -0/+61 |
|
|
* | Taught cPickle how to read pickles containing NEWOBJ. This won't get | Tim Peters | 2003-02-13 | 1 | -1/+75 |
|
|
* | Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. | Tim Peters | 2003-02-13 | 1 | -5/+9 |
|
|
* | Conditionalize another constant | Andrew M. Kuchling | 2003-02-13 | 1 | -0/+2 |
|
|
* | socket_inet_aton(): ip_addr was left undefined before use in the | Tim Peters | 2003-02-13 | 1 | -9/+9 |
|
|
* | Ummm, try to get it right this time | Neal Norwitz | 2003-02-13 | 1 | -1/+1 |
|
|
* | Use configure to check for inet_aton. | Neal Norwitz | 2003-02-13 | 1 | -1/+1 |
|
|
* | Addressing SF bug #643005, implement socket.inet_aton() using | Guido van Rossum | 2003-02-12 | 1 | -1/+17 |
|
|
* | Minor cleanup of new batch-list/dict code. | Tim Peters | 2003-02-12 | 1 | -16/+12 |
|
|
* | Add more missing PyErr_NoMemory() after failled memory allocs | Neal Norwitz | 2003-02-11 | 2 | -3/+3 |
|
|
* | Implemented batching for dicts in cPickle. This is after two failed | Tim Peters | 2003-02-11 | 1 | -30/+119 |
|
|
* | Add Str, a subclass of str. | Guido van Rossum | 2003-02-11 | 1 | -0/+58 |
|
|
* | Implemented list batching in cPickle. | Tim Peters | 2003-02-11 | 1 | -30/+103 |
|
|
* | Unparenting BZ2File, as discussed in SF patch #661796. | Gustavo Niemeyer | 2003-02-11 | 1 | -102/+158 |
|
|
* | SF bug 684667: Modules/selectmodule.c returns NULL without exception set. | Tim Peters | 2003-02-11 | 1 | -1/+1 |
|
|
* | Patch #676839: Cygwin _iconv_codec module patch | Jason Tishler | 2003-02-10 | 1 | -1/+2 |
|
|
* | Patch #676837: Cygwin array module patch | Jason Tishler | 2003-02-10 | 1 | -1/+2 |
|
|
* | Fix memory leak of newstr when putenv() fails | Neal Norwitz | 2003-02-10 | 1 | -0/+1 |
|
|
* | Remove duplicate code introduced by fixing bug #678518 | Neal Norwitz | 2003-02-10 | 1 | -3/+0 |
|
|
* | Remove unused variable. | Guido van Rossum | 2003-02-09 | 2 | -2/+1 |
|
|
* | C Code: | Raymond Hettinger | 2003-02-09 | 1 | -124/+248 |
|
|
* | Apply logistix's patch from | Michael W. Hudson | 2003-02-08 | 1 | -3/+43 |
|
|
* | timedelta comparison and datetime addition: as the Python implementation | Tim Peters | 2003-02-08 | 1 | -4/+4 |
|
|
* | Comparison for timedelta, time, date and datetime objects: __eq__ and | Tim Peters | 2003-02-07 | 1 | -38/+52 |
|
|
* | SF patch #682514, mmapmodule.c write fix for LP64 executables | Neal Norwitz | 2003-02-07 | 1 | -1/+1 |
|
|
* | * Eliminated tuple re-use in imap(). Doing it correctly made the code | Raymond Hettinger | 2003-02-07 | 1 | -62/+30 |
|
|
* | SF bug #681003: itertools issues | Raymond Hettinger | 2003-02-07 | 1 | -6/+84 |
|
|
* | Integrate the patch from expat.h 1.51; needed for some C compilers. | Fred Drake | 2003-02-07 | 1 | -21/+24 |
|
|
* | More typo repair. | Tim Peters | 2003-02-05 | 1 | -1/+1 |
|
|
* | Typo repair. | Tim Peters | 2003-02-05 | 1 | -4/+4 |
|
|
* | cPickle: exempt two_tuple from GC -- it's a speed hack, and doesn't | Tim Peters | 2003-02-04 | 1 | -1/+6 |
|
|
* | cPickle now generates proto 2 EXT[124] when appropriate. | Tim Peters | 2003-02-04 | 1 | -2/+67 |
|
|