| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed misspelling in comment. | Tim Peters | 2002-08-11 | 1 | -1/+1 |
|
|
* | Extend stripid() to handle strings ending in more than one '>'. | Ka-Ping Yee | 2002-08-11 | 1 | -37/+36 |
|
|
* | Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. | Marc-André Lemburg | 2002-08-11 | 1 | -0/+8 |
|
|
* | test_saveall(): Another small simplification; plus s/l/L/g. | Tim Peters | 2002-08-11 | 1 | -10/+8 |
|
|
* | And one more simplification to test_saveall(). | Tim Peters | 2002-08-10 | 1 | -11/+10 |
|
|
* | test_saveall(): Simplified a little, given that we only expect one item | Tim Peters | 2002-08-10 | 1 | -6/+4 |
|
|
* | If any trash happened to be sitting around waiting to get collected at | Tim Peters | 2002-08-10 | 1 | -1/+8 |
|
|
* | Disallow class assignment completely unless both old and new are heap | Guido van Rossum | 2002-08-10 | 1 | -0/+5 |
|
|
* | Fix a typo in the mktemp -> mkstemp patch. | Guido van Rossum | 2002-08-10 | 3 | -3/+3 |
|
|
* | Add tests for weakref support for generator-iterators. | Fred Drake | 2002-08-09 | 1 | -1/+27 |
|
|
* | There's no distinction among 'user', 'group' and 'world' permissions | Tim Peters | 2002-08-09 | 1 | -2/+14 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-09 | 2 | -8/+11 |
|
|
* | Test finalizers and GC from inside __del__ for new classes. | Guido van Rossum | 2002-08-09 | 1 | -0/+41 |
|
|
* | Massive changes from SF 589982 (tempfile.py rewrite, by Zack | Guido van Rossum | 2002-08-09 | 24 | -83/+89 |
|
|
* | 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 |
|
|
* | Unicode replace() method with empty pattern argument should fail, like | Guido van Rossum | 2002-08-09 | 1 | -0/+6 |
|
|
* | New entries to track the DOM API growth. These match names exposed in | Fred Drake | 2002-08-09 | 1 | -0/+5 |
|
|
* | Fix to ensure consistent 'repr' and 'str' results between Python | Steve Purcell | 2002-08-09 | 1 | -7/+10 |
|
|
* | Moved inplace add and multiply methods from UserString to MutableString. | Raymond Hettinger | 2002-08-09 | 4 | -11/+19 |
|
|
* | Revised the test suite for 'contains' to use the test() function argument | Raymond Hettinger | 2002-08-09 | 1 | -9/+9 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Replace tabs with spaces. (Sorry!) | Guido van Rossum | 2002-08-07 | 1 | -3/+3 |
|
|
* | Tighten the unbuffered readline test to distinguish between the two lines. | Guido van Rossum | 2002-08-07 | 1 | -4/+4 |
|
|
* | Simplify heapreplace() -- there's no need for an explicit test for | Guido van Rossum | 2002-08-07 | 1 | -7/+4 |
|
|
* | Oops. I accidentally commented out some tests. | Guido van Rossum | 2002-08-07 | 1 | -4/+4 |
|
|
* | "Unbuffered" mode of class _fileobject wasn't actually unbuffered, | Guido van Rossum | 2002-08-07 | 2 | -8/+40 |
|
|
* | Expanded the unittests for the new width sensitive PyUnicode_Contains(). | Raymond Hettinger | 2002-08-06 | 1 | -0/+6 |
|
|
* | Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). | Guido van Rossum | 2002-08-06 | 1 | -0/+14 |
|
|
* | Added a test for PyUnicode_Contains() taking into account the width of | Barry Warsaw | 2002-08-06 | 1 | -0/+1 |
|
|
* | Add a coding cookie, because of the møøse quote. | Guido van Rossum | 2002-08-06 | 1 | -0/+1 |
|
|
* | Bump the LOOPS count. 50,000 iterations takes about 5 seconds on my | Guido van Rossum | 2002-08-06 | 1 | -1/+1 |
|
|
* | Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py. | Guido van Rossum | 2002-08-06 | 2 | -2/+5 |
|
|
* | Remove mention of deprecated xreadlines method. | Guido van Rossum | 2002-08-06 | 1 | -1/+1 |
|
|
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 5 | -65/+88 |
|
|
* | Add next and __iter__ to the list of file methods that should raise | Guido van Rossum | 2002-08-06 | 1 | -1/+3 |
|
|
* | We only need to check for StopIteration here. | Fred Drake | 2002-08-05 | 1 | -1/+1 |
|
|
* | SF patch 590294: os._execvpe security fix (Zack Weinberg). | Guido van Rossum | 2002-08-05 | 1 | -21/+6 |
|
|
* | GvR provided solution to the socket rebinding timeout problem. | Kurt B. Kaiser | 2002-08-05 | 3 | -7/+6 |
|
|