| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Test whether a Cyrillic text correctly appears in a Unicode literal. | Martin v. Löwis | 2002-08-05 | 1 | -0/+2 |
|
|
* | We don't really need the name of the test in the "test skipped" msg, and | Tim Peters | 2002-08-04 | 1 | -1/+1 |
|
|
* | Oops! Forgot the closing paren. | Tim Peters | 2002-08-04 | 1 | -1/+1 |
|
|
* | Finally got around to figuring out and documenting why this test fails | Tim Peters | 2002-08-04 | 1 | -2/+10 |
|
|
* | Add encoding declaration. | Martin v. Löwis | 2002-08-04 | 2 | -1/+2 |
|
|
* | Add encoding declaration. | Martin v. Löwis | 2002-08-04 | 2 | -0/+2 |
|
|
* | I don't know what's going on with this test, but the last change from | Tim Peters | 2002-08-04 | 1 | -1/+1 |
|
|
* | - comment improvement | Andrew MacIntyre | 2002-08-04 | 1 | -1/+25 |
|
|
* | add parameter missing following Jeremy's compiler class refactoring | Andrew MacIntyre | 2002-08-04 | 1 | -1/+1 |
|
|
* | _siftup(): __le__ is now the only comparison operator used on array | Tim Peters | 2002-08-03 | 1 | -1/+1 |
|
|
* | revert to version 1.2 | Piers Lauder | 2002-08-03 | 1 | -5/+6 |
|
|
* | Added new heapreplace(heap, item) function, to pop (and return) the | Tim Peters | 2002-08-03 | 2 | -3/+20 |
|
|
* | Large code rearrangement to use better algorithms, in the sense of needing | Tim Peters | 2002-08-03 | 1 | -39/+79 |
|
|
* | Remove cut 'n paste silliness. | Tim Peters | 2002-08-03 | 1 | -2/+0 |
|
|
* | Minor fiddling, including a simple class to implement a heap iterator | Tim Peters | 2002-08-03 | 2 | -10/+23 |
|
|
* | Augment credits. | Guido van Rossum | 2002-08-02 | 1 | -1/+1 |
|
|
* | Hmm! I thought I checked this in before! Oh well. | Tim Peters | 2002-08-02 | 2 | -10/+48 |
|
|
* | Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's | Guido van Rossum | 2002-08-02 | 1 | -0/+2 |
|
|
* | heappop(): Added comments; simplified and sped the code. | Tim Peters | 2002-08-02 | 1 | -21/+19 |
|
|
* | heappop(): Use "while True" instead of "while 1". | Tim Peters | 2002-08-02 | 1 | -1/+1 |
|
|
* | check_invariant(): Use the same child->parent "formula" used by heapq.py. | Tim Peters | 2002-08-02 | 1 | -2/+2 |
|
|
* | Don't use true division where int division was intended. For that matter, | Tim Peters | 2002-08-02 | 2 | -2/+2 |
|
|
* | Adding the heap queue algorithm, per discussion in python-dev last | Guido van Rossum | 2002-08-02 | 1 | -0/+48 |
|
|
* | catch the situation where Berkeley DB is used to emulate dbm(3) library | Skip Montanaro | 2002-08-02 | 1 | -3/+24 |
|
|
* | regression test for the whichdb module | Skip Montanaro | 2002-08-02 | 1 | -0/+63 |
|
|
* | Add Kevin O'Connor, author of the heapq code. | Guido van Rossum | 2002-08-02 | 1 | -0/+2 |
|
|
* | Adding the heap queue algorithm, per discussion in python-dev last | Guido van Rossum | 2002-08-02 | 1 | -0/+176 |
|
|
* | testGetServByName shouldn't check for getservbyname - the socket module | Skip Montanaro | 2002-08-02 | 1 | -18/+17 |
|
|
* | New test %sort. This takes a sorted list, picks 1% of the list positions | Tim Peters | 2002-08-02 | 1 | -1/+7 |
|
|
* | modify testGetServByName so it tries a few different protocols. In this day | Skip Montanaro | 2002-08-02 | 1 | -5/+17 |
|
|
* | Fix for SF bug 570678 (can't flush read-only file on Mac OS X). | Guido van Rossum | 2002-08-01 | 1 | -1/+0 |
|
|