| Commit message (Expand) | Author | Age | Files | Lines |
* | Added call to 'ensure_ready()' on the command object in | Greg Ward | 2000-03-01 | 1 | -0/+1 |
|
|
* | Added 'get_platform()' to construct a string that identifies the current | Greg Ward | 2000-03-01 | 1 | -1/+19 |
|
|
* | Build reorg: | Greg Ward | 2000-03-01 | 1 | -16/+41 |
|
|
* | Build reorg: | Greg Ward | 2000-03-01 | 1 | -12/+43 |
|
|
* | Build reorg: change 'build_dir' option to 'build_lib'. | Greg Ward | 2000-03-01 | 1 | -8/+8 |
|
|
* | Patch by Fred Gansevles (the module's original author). | Guido van Rossum | 2000-02-29 | 2 | -28/+58 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 37 | -272/+272 |
|
|
* | Remove some redundant logic from walk() -- there's no need to check | Guido van Rossum | 2000-02-29 | 1 | -2/+0 |
|
|
* | Correct type error in getopt.error handling code. | Guido van Rossum | 2000-02-29 | 1 | -1/+1 |
|
|
* | Script by Tim Peters to discover illegal append() calls. | Guido van Rossum | 2000-02-29 | 1 | -0/+168 |
|
|
* | Fix multi-arg append(). | Guido van Rossum | 2000-02-29 | 1 | -1/+1 |
|
|
* | Update portability information for the spawn*() functions and related | Fred Drake | 2000-02-29 | 1 | -4/+11 |
|
|
* | Fix a typo in a comment | Andrew M. Kuchling | 2000-02-29 | 1 | -1/+1 |
|
|
* | Fix comments relating to the specific regexs used to parse section and | Fred Drake | 2000-02-28 | 1 | -2/+2 |
|
|
* | Patch by Piers Lauder, who writes: | Guido van Rossum | 2000-02-28 | 1 | -5/+6 |
|
|
* | (Finally!) Changes related to the ConfigParser/INI-file topics | Fred Drake | 2000-02-28 | 1 | -5/+11 |
|
|
* | Drop the support level for stdwin a notch -- the contents of | Guido van Rossum | 2000-02-28 | 1 | -1/+1 |
|
|
* | Fix use of list.append() with multiple arguments | Andrew M. Kuchling | 2000-02-28 | 1 | -1/+1 |
|
|
* | Simple changes by Gerrit Holl - move author acknowledgements out of | Guido van Rossum | 2000-02-28 | 9 | -43/+46 |
|
|
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds | Guido van Rossum | 2000-02-28 | 1 | -0/+56 |
|
|
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This | Guido van Rossum | 2000-02-28 | 1 | -1/+8 |
|
|
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds | Guido van Rossum | 2000-02-28 | 1 | -1/+7 |
|
|
* | Patch by Gerrit Holl to avoid doing two stat() calls in a row in walk(). | Guido van Rossum | 2000-02-28 | 1 | -1/+2 |
|
|
* | Fix a typo in Barry's checkin. | Guido van Rossum | 2000-02-27 | 1 | -1/+1 |
|
|
* | Fixed a multi-arg append() call, discovered by Mark Favas. | Guido van Rossum | 2000-02-27 | 1 | -4/+4 |
|
|
* | Two buglet fixes. Peter Funk caught the bug in make_escapes: | Barry Warsaw | 2000-02-27 | 1 | -7/+9 |
|
|
* | Changes submitted by Peter Funk (some fixes/additions by B.Warsaw) to | Barry Warsaw | 2000-02-26 | 1 | -40/+140 |
|
|
* | The "Distributing Python Modules" manual; currently empty (I'll get to it | Greg Ward | 2000-02-26 | 1 | -0/+12 |
|
|
* | Try to deal with pre-1.5.2 IOError exception objects. | Greg Ward | 2000-02-26 | 1 | -2/+6 |
|
|
* | Unfinished, untested implementation of the lovely baroque installation scheme | Greg Ward | 2000-02-26 | 4 | -183/+118 |
|
|
* | Better fix for mpzmodule problem reported by Peter Funk: just use | Andrew M. Kuchling | 2000-02-25 | 1 | -6/+2 |
|
|
* | Changes inspired by Randall Hooper to allow callbacks when an | Barry Warsaw | 2000-02-25 | 1 | -4/+15 |
|
|
* | Pat Knight: | Guido van Rossum | 2000-02-25 | 2 | -61/+61 |
|
|
* | Test case for fork1() behavior. | Guido van Rossum | 2000-02-25 | 2 | -0/+55 |
|
|
* | Delete references to _SC_AIO_LIST_MAX; it appears that that symbol was | Guido van Rossum | 2000-02-25 | 1 | -3/+0 |
|
|
* | Gerrit forgot to remove the "import string". | Guido van Rossum | 2000-02-25 | 1 | -2/+0 |
|
|
* | Gerrit Holl's patch to move attribution from the docstring to a | Fred Drake | 2000-02-25 | 1 | -4/+4 |
|
|
* | Fix a couple broken append() calls, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -4/+4 |
|
|
* | Fix a couple dozen broken ci.append(x, y, z) calls, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -25/+25 |
|
|
* | Fix a broken r.append(name, value) call, spotted by Tim. | Guido van Rossum | 2000-02-25 | 1 | -1/+1 |
|
|
* | OKOK, Greg's right, I should've used the :name option in the argument | Guido van Rossum | 2000-02-24 | 1 | -9/+9 |
|
|
* | Peter Funk: | Guido van Rossum | 2000-02-24 | 1 | -0/+5 |
|
|
* | Made all list methods use PyArg_ParseTuple(), for more accurate | Guido van Rossum | 2000-02-24 | 1 | -30/+29 |
|
|
* | Moshe Zadka: | Guido van Rossum | 2000-02-24 | 1 | -4/+77 |
|
|
* | Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. | Greg Ward | 2000-02-24 | 1 | -0/+1 |
|
|
* | Mark Favas discovered this: getatime() accidentally returned the MTIME! | Guido van Rossum | 2000-02-24 | 1 | -1/+1 |
|
|
* | Piers Lauder: | Guido van Rossum | 2000-02-24 | 1 | -5/+5 |
|
|
* | Add tests to exercise sequence operations (multiplication, indexing, | Andrew M. Kuchling | 2000-02-23 | 1 | -0/+25 |
|
|
* | Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), | Andrew M. Kuchling | 2000-02-23 | 1 | -1/+19 |
|
|
* | Allow using long integers as slice indexes | Andrew M. Kuchling | 2000-02-23 | 1 | -2/+34 |
|
|