summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* os.listdir(): Fall back to the original byte string if conversion to unicodeJust van Rossum2003-03-041-6/+8
* Fix SF #692416, don't crash interpreter for _tkinter.deletefilehandlerNeal Norwitz2003-03-031-1/+13
* plugged leak noted by nnorwitz: the 'et' format returns allocated memoryJust van Rossum2003-03-031-2/+4
* Patch #683592 revisited, after discussions with MvL:Just van Rossum2003-03-031-10/+8
* Fix bugMichael W. Hudson2003-03-031-11/+83
* Don't crash on _tkinter.createfilehandler in non-threaded Tcl;Martin v. Löwis2003-03-031-1/+26
* get_completer() takes no argsNeal Norwitz2003-03-011-1/+1
* Several of the tools can make direct calls the inner iterators.Raymond Hettinger2003-03-011-9/+24
* Fix SF bug #690012 (among others), iconv_codec stops buildNeal Norwitz2003-02-281-3/+3
* use proper constant instead of comment (noted by nnorwitz)Just van Rossum2003-02-281-1/+1
* Fix SF bug #694816, remove comparison of unsigned value < 0Neal Norwitz2003-02-281-2/+2
* Patch #683592: unicode support for os.listdir()Just van Rossum2003-02-251-0/+24
* Change the test encoding from "ISO8859-1" to "ISO-8859-1"Walter Dörwald2003-02-241-4/+4
* SF patch #687598, array.append is sloooowNeal Norwitz2003-02-241-2/+47
* 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