| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix bug 683658 - PyErr_Warn may cause import deadlock. | Mark Hammond | 2003-02-19 | 1 | -1/+4 |
|
|
* | Enable argv emulation if required. | Jack Jansen | 2003-02-18 | 1 | -2/+4 |
|
|
* | Added an argv_emulation option (command line option: --argv or -a) which | Jack Jansen | 2003-02-18 | 1 | -2/+36 |
|
|
* | Argvemulator still used the old Alias API. Fixed. | Jack Jansen | 2003-02-18 | 1 | -2/+2 |
|
|
* | Remove unused _better_reduce (which will disappear soon) and | Guido van Rossum | 2003-02-18 | 1 | -1/+1 |
|
|
* | Three test cases for __reduce_ex__. This fails for cPickle, until Tim | Guido van Rossum | 2003-02-18 | 1 | -0/+52 |
|
|
* | Introducing __reduce_ex__, which is called with a protocol number argument | Guido van Rossum | 2003-02-18 | 3 | -15/+26 |
|
|
* | Use python.org as the repository | Andrew M. Kuchling | 2003-02-18 | 1 | -2/+1 |
|
|
* | One doctest displaying a dict didn't sort it first. *Maybe* this fixes | Tim Peters | 2003-02-18 | 1 | -2/+2 |
|
|
* | Fix SF bug #688424, 64-bit test problems | Neal Norwitz | 2003-02-18 | 1 | -26/+71 |
|
|
* | Fix SF bug #688424, 64-bit test problems | Neal Norwitz | 2003-02-18 | 2 | -3/+8 |
|
|
* | Copy the trace module here from Tools/scripts. | Jeremy Hylton | 2003-02-18 | 1 | -0/+729 |
|
|
* | SF patch #687683, Patches to logging (updates from Vinay) | Neal Norwitz | 2003-02-18 | 4 | -53/+87 |
|
|
* | Use "$@" to pass arguments to Python in stead of "${1}". This passes all | Jack Jansen | 2003-02-18 | 1 | -1/+1 |
|
|
* | [Patch #681504] Call customize_compiler in config command | Andrew M. Kuchling | 2003-02-18 | 1 | -0/+2 |
|
|
* | Make changes suggested by Walter to use self.assert*() methods. | Neal Norwitz | 2003-02-17 | 1 | -26/+14 |
|
|
* | Import test_support properly | Neal Norwitz | 2003-02-17 | 1 | -1/+1 |
|
|
* | test_posix is an expected skip on Win32. Also fixed test_posix to | Tim Peters | 2003-02-17 | 2 | -1/+2 |
|
|
* | M NEWS.txt | Kurt B. Kaiser | 2003-02-17 | 5 | -63/+149 |
|
|
* | Added test_posix (hopefully it works on Windows). | Neal Norwitz | 2003-02-17 | 1 | -0/+172 |
|
|
* | Use correct function name to PyArg_ParseTuple("is_package"). | Neal Norwitz | 2003-02-17 | 1 | -1/+4 |
|
|
* | When installing resource files whose name ends in .rsrc use the | Jack Jansen | 2003-02-17 | 2 | -5/+45 |
|
|
* | Actually run these tests from regrtest.py. | Neal Norwitz | 2003-02-17 | 6 | -10/+38 |
|
|
* | - Added support for zip archives | Jack Jansen | 2003-02-17 | 1 | -3/+13 |
|
|
* | Tweak to Skip's checkin of patch 686397: | Andrew MacIntyre | 2003-02-17 | 1 | -3/+2 |
|
|
* | Better error messages and warnings. | Jack Jansen | 2003-02-16 | 1 | -7/+11 |
|
|
* | Fix for SF 686380, from SF patch 686771 by Ping. (errors trying to | Guido van Rossum | 2003-02-16 | 1 | -1/+1 |
|
|
* | cPickle.c, load_build(): Taught cPickle how to pick apart | Tim Peters | 2003-02-15 | 3 | -8/+6 |
|
|
* | cPickle produces NEWOBJ appropriately now. It still doesn't know | Tim Peters | 2003-02-14 | 1 | -6/+6 |
|
|
* | Migrate definitions of several platform-dependent path-related variables | Skip Montanaro | 2003-02-14 | 6 | -57/+70 |
|
|
* | - The audio driver tests (test_ossaudiodev.py and | Guido van Rossum | 2003-02-14 | 3 | -0/+8 |
|
|
* | Factored out classes for handling source and binary distributions. Source | Jack Jansen | 2003-02-14 | 1 | -40/+126 |
|
|
* | Port test_charmapcodec to PyUnit. From SF patch #662807 | Walter Dörwald | 2003-02-14 | 2 | -44/+32 |
|
|
* | SF bug #663701: sets module review | Raymond Hettinger | 2003-02-14 | 1 | -7/+7 |
|
|
* | Fix docstring typo | Andrew M. Kuchling | 2003-02-14 | 1 | -1/+1 |
|
|
* | Fix comment typo | Andrew M. Kuchling | 2003-02-14 | 1 | -1/+1 |
|
|
* | SF 685011: calendar module overflow handling | Raymond Hettinger | 2003-02-13 | 1 | -1/+1 |
|
|
* | - Finally fixed the bug in compile() and exec where a string ending | Guido van Rossum | 2003-02-13 | 4 | -6/+22 |
|
|
* | Removed unused cut'n'paste import. | Tim Peters | 2003-02-13 | 1 | -1/+0 |
|
|
* | We didn't have any tests making pickles with one of {pickle, cPickle}, | Tim Peters | 2003-02-13 | 2 | -0/+52 |
|
|
* | Added a simple NEWOBJ test. This is in the pickle-only part of the | Tim Peters | 2003-02-13 | 1 | -0/+15 |
|
|
* | Remove filecmp | Andrew M. Kuchling | 2003-02-13 | 1 | -1/+0 |
|
|
* | Port test_userlist to PyUnit and add a few tests to increase code | Walter Dörwald | 2003-02-13 | 1 | -197/+257 |
|
|
* | SF patch #685738 by Michael Stone. | Guido van Rossum | 2003-02-13 | 2 | -11/+14 |
|
|
* | Re-enable compiling ossaudiodev now that it seems to work again. | Guido van Rossum | 2003-02-13 | 1 | -1/+0 |
|
|
* | Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. | Tim Peters | 2003-02-13 | 2 | -5/+11 |
|
|
* | SF patch #682432, add lookbehind tests | Neal Norwitz | 2003-02-13 | 1 | -0/+7 |
|
|
* | Fix typo. | Walter Dörwald | 2003-02-12 | 1 | -1/+1 |
|
|
* | Add test to ensure files (fds) don't leak | Neal Norwitz | 2003-02-12 | 1 | -0/+6 |
|
|
* | Cleanup from patch #683257: | Neal Norwitz | 2003-02-12 | 1 | -0/+26 |
|
|