| Commit message (Expand) | Author | Age | Files | Lines |
* | Doc portion of SF 589982 (tempfile.py rewrite, by Zack Weinberg). | Guido van Rossum | 2002-08-09 | 1 | -42/+160 |
|
|
* | Check-in of the most essential parts of SF 589982 (tempfile.py | Guido van Rossum | 2002-08-09 | 2 | -232/+1100 |
|
|
* | Test for Neil's fix to correctly invoke __rmul__. | Guido van Rossum | 2002-08-09 | 1 | -0/+16 |
|
|
* | News about Neil's fix to correctly invoke __rmul__. | Guido van Rossum | 2002-08-09 | 1 | -0/+5 |
|
|
* | Unicode replace() method with empty pattern argument should fail, like | Guido van Rossum | 2002-08-09 | 2 | -0/+11 |
|
|
* | Only call sq_repeat if the object does not have a nb_multiply slot. One | Neil Schemenauer | 2002-08-09 | 1 | -6/+8 |
|
|
* | New entries to track the DOM API growth. These match names exposed in | Fred Drake | 2002-08-09 | 1 | -0/+5 |
|
|
* | When installing the "python" link in bindir also test for a pre-existing | Jack Jansen | 2002-08-09 | 1 | -1/+1 |
|
|
* | - Precompile py files in Mac subtree after installing | Jack Jansen | 2002-08-09 | 1 | -28/+34 |
|
|
* | - Check not only that cache file exists, but also that it is newer than | Jack Jansen | 2002-08-09 | 1 | -4/+7 |
|
|
* | Tool to pre-created cached .rsrc.df.rsrc files in the Lib directories, | Jack Jansen | 2002-08-09 | 1 | -0/+45 |
|
|
* | Document that -u puts stdin, stdout, and stderr in binary mode. | Sjoerd Mullender | 2002-08-09 | 1 | -5/+6 |
|
|
* | On Cygwin, put stdin, stderr, and stdout in binary mode when the -u | Sjoerd Mullender | 2002-08-09 | 1 | -2/+2 |
|
|
* | Obsolete now that there's a python implementation of strptime in the | Jack Jansen | 2002-08-09 | 1 | -250/+0 |
|
|
* | Patch by Russel Owen: if we have command line arguments zap pyc files | Jack Jansen | 2002-08-09 | 1 | -12/+15 |
|
|
* | Fix to ensure consistent 'repr' and 'str' results between Python | Steve Purcell | 2002-08-09 | 1 | -7/+10 |
|
|
* | Depracated some non-carbon modules. | Jack Jansen | 2002-08-09 | 3 | -0/+1013 |
|
|
* | This file should have gone long ago. | Jack Jansen | 2002-08-09 | 1 | -18/+0 |
|
|
* | Repaired a braino in the description of bad minrun values. | Tim Peters | 2002-08-09 | 1 | -3/+3 |
|
|
* | SF bug #592645 fix memory leak in socket.getaddrinfo | Neal Norwitz | 2002-08-09 | 1 | -0/+2 |
|
|
* | Update the text on the Expat module and library. | Fred Drake | 2002-08-09 | 1 | -17/+9 |
|
|
* | Major speedup for new-style class creation. Turns out there was some | Guido van Rossum | 2002-08-09 | 1 | -0/+22 |
|
|
* | Moved inplace add and multiply methods from UserString to MutableString. | Raymond Hettinger | 2002-08-09 | 4 | -11/+19 |
|
|
* | Moved special case for tuples from iterobject.c to | Raymond Hettinger | 2002-08-09 | 2 | -25/+123 |
|
|
* | Revised the test suite for 'contains' to use the test() function argument | Raymond Hettinger | 2002-08-09 | 1 | -9/+9 |
|
|
* | By popular demand the frameworkinstall target now installs everything: | Jack Jansen | 2002-08-09 | 2 | -30/+51 |
|
|
* | Significant speedup in new-style object creation: in slot_tp_new(), | Guido van Rossum | 2002-08-08 | 1 | -1/+8 |
|
|
* | Use hex escape for non-ascii chars, now that the parser wants that. | Jack Jansen | 2002-08-08 | 1 | -13/+13 |
|
|
* | A modest speedup of object deallocation. call_finalizer() did rather | Guido van Rossum | 2002-08-08 | 2 | -66/+71 |
|
|
* | The other half of the patches added to SF patch 555085 by A I | Guido van Rossum | 2002-08-08 | 1 | -0/+2 |
|
|
* | Clean up some docstrings. Some docstrings didn't show their return | Guido van Rossum | 2002-08-08 | 1 | -10/+11 |
|
|
* | testSendAll(): loop until all data is read; this was necessary at | Guido van Rossum | 2002-08-08 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-08 | 83 | -5828/+5817 |
|
|
* | Delete junk attributes left behind by _socketobject class construction. | Tim Peters | 2002-08-08 | 1 | -0/+1 |
|
|
* | Patch #588561: Cygwin _hotshot patch | Jason Tishler | 2002-08-08 | 1 | -2/+4 |
|
|
* | The _socketobject class has no need for a __del__ method: all it did was | Guido van Rossum | 2002-08-08 | 1 | -10/+6 |
|
|
* | OK, one more hack: speed up the case of readline() in unbuffered mode. | Guido van Rossum | 2002-08-08 | 1 | -0/+11 |
|
|
* | Another refactoring of read() and readline(), this time based on the | Guido van Rossum | 2002-08-08 | 1 | -66/+88 |
|
|
* | Extend __all__ with the exports list of the _ssl module. | Guido van Rossum | 2002-08-08 | 1 | -1/+4 |
|
|
* | Oops, stupid tabs. Sorry again. | Guido van Rossum | 2002-08-08 | 1 | -3/+3 |
|
|
* | Another refactoring. Changed 'socket' from being a factory function | Guido van Rossum | 2002-08-08 | 1 | -26/+49 |
|
|
* | Add module-wide "__metaclass__ = type", as requested by Jim Fulton. | Steve Purcell | 2002-08-08 | 1 | -1/+4 |
|
|
* | Added info about highwater heap-memory use for the sortperf.py tests; + a | Tim Peters | 2002-08-08 | 1 | -3/+31 |
|
|
* | PyList_Reverse(): This was leaking a reference to Py_None on every call. | Tim Peters | 2002-08-08 | 1 | -1/+4 |
|
|
* | Major restructuring of _fileobject. Hopefully several things now work | Guido van Rossum | 2002-08-08 | 1 | -61/+111 |
|
|
* | Replace docstrings on test functions witrh comments -- then unittest | Guido van Rossum | 2002-08-08 | 1 | -31/+50 |
|
|
* | Added info about the right way to leave the body of a trashcan-protected | Tim Peters | 2002-08-07 | 1 | -0/+5 |
|
|
* | Fix a subtle bug in the trashcan code I added yesterday to | Guido van Rossum | 2002-08-07 | 1 | -2/+3 |
|
|
* | GvR pointed out that only enclosing function bodies are part of nested scopes. | Raymond Hettinger | 2002-08-07 | 1 | -5/+5 |
|
|
* | Add -E and -tt options to the python invocations, as for the Unix tests. | Guido van Rossum | 2002-08-07 | 1 | -2/+2 |
|
|