| Commit message (Expand) | Author | Age | Files | Lines |
* | - Added keyword argument 'append' to filterwarnings(); if true, this | Guido van Rossum | 2001-01-14 | 1 | -5/+10 |
|
|
* | Reverting a dumb experimental version I checked in by mistake. | Tim Peters | 2001-01-14 | 1 | -9/+2 |
|
|
* | SF bug 128713: type(mmap_object) blew up on Linux. | Tim Peters | 2001-01-14 | 3 | -2/+12 |
|
|
* | mwh: [ Patch #103228 ] traceback.py nit. | Guido van Rossum | 2001-01-13 | 1 | -1/+5 |
|
|
* | SF Patch #103227 by mwh: make code.py appreciate softspace | Guido van Rossum | 2001-01-13 | 1 | -0/+14 |
|
|
* | No text file relying on significant trailing whitespace is robust under | Tim Peters | 2001-01-13 | 1 | -16/+16 |
|
|
* | SF Patch #103225 by Ping: httplib: smallest Python patch ever | Guido van Rossum | 2001-01-13 | 1 | -2/+5 |
|
|
* | Fix stupidity. | Tim Peters | 2001-01-13 | 1 | -1/+1 |
|
|
* | Guido found a brand new race in tempfile on Linux, due to Linux changing | Tim Peters | 2001-01-13 | 3 | -16/+121 |
|
|
* | A variant of SF patch 103028 (Make tempfile.mktemp threadsafe). | Tim Peters | 2001-01-12 | 1 | -12/+45 |
|
|
* | Delete unused import of pprint module | Andrew M. Kuchling | 2001-01-11 | 1 | -1/+0 |
|
|
* | Patch #103134: Support import lines in pth files. | Martin v. Löwis | 2001-01-11 | 1 | -1/+4 |
|
|
* | Adapted version of SF Patch #103173 by pyretic: make uu.decode work | Guido van Rossum | 2001-01-10 | 1 | -5/+4 |
|
|
* | Moved the test codec definition to a new module and updated the test and | Marc-André Lemburg | 2001-01-10 | 3 | -54/+97 |
|
|
* | Assorted xreadlines problems: | Tim Peters | 2001-01-09 | 2 | -9/+10 |
|
|
* | Test for xreadline. | Guido van Rossum | 2001-01-09 | 2 | -0/+46 |
|
|
* | Check in patch #102971: if library_dirs is a string, split it using | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+2 |
|
|
* | Patch #102953: Fix bug #125452, where shlex.shlex hangs when it | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+5 |
|
|
* | GetoptError is always initialized with exactly two parameters, so simplify | Fred Drake | 2001-01-08 | 1 | -7/+4 |
|
|
* | Fixed bug which caused HTTPS not to work at all with string URLs | Moshe Zadka | 2001-01-08 | 1 | -1/+1 |
|
|
* | Text.__init__(): Make sure the data parameter is a string (8-bit or | Fred Drake | 2001-01-08 | 1 | -0/+2 |
|
|
* | 18 isn't a prime (duh). | Tim Peters | 2001-01-08 | 1 | -1/+1 |
|
|
* | MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky | Tim Peters | 2001-01-07 | 2 | -0/+61 |
|
|
* | Add more regression tests, including for the import statement variations. | Fred Drake | 2001-01-07 | 2 | -10/+60 |
|
|
* | This patch adds a new feature to the builtin charmap codec: | Marc-André Lemburg | 2001-01-06 | 2 | -0/+66 |
|
|
* | Speed it up by using readlines(sizehint). It's still slower than | Guido van Rossum | 2001-01-05 | 1 | -10/+39 |
|
|
* | Add test cases based on RFC 1808. So now we actually have a test suite | Fred Drake | 2001-01-05 | 2 | -0/+106 |
|
|
* | urlunparse(): Do not add a leading slash to the path if it is empty. | Fred Drake | 2001-01-05 | 1 | -6/+12 |
|
|
* | When a PyCFunction that takes only positional parameters is called with | Fred Drake | 2001-01-04 | 2 | -1/+22 |
|
|
* | No more RCmp. | Neil Schemenauer | 2001-01-04 | 1 | -22/+1 |
|
|
* | Sequence repeat works now for in-place multiply with an integer type | Neil Schemenauer | 2001-01-04 | 1 | -4/+4 |
|
|
* | __rcmp__ no longer gets called on instances. Remove the test for it. | Neil Schemenauer | 2001-01-04 | 1 | -12/+1 |
|
|
* | Numbers no longer compare smaller than all other types. Fix the only | Neil Schemenauer | 2001-01-04 | 1 | -1/+2 |
|
|
* | Actually call the object with an __call__ method, instead of just | Jeremy Hylton | 2001-01-03 | 1 | -0/+1 |
|
|
* | This patch changes the default behaviour of the builtin charmap | Marc-André Lemburg | 2001-01-03 | 54 | -269/+377 |
|
|
* | Use == rather than cmp(). The return value of cmp() is not well defined when | Neil Schemenauer | 2001-01-03 | 2 | -128/+130 |
|
|
* | Use numbers that can be accurately represented on binary machines. I hope | Neil Schemenauer | 2001-01-03 | 2 | -587/+587 |
|
|
* | Add forgotten import | Andrew M. Kuchling | 2001-01-02 | 1 | -0/+1 |
|
|
* | Duh. Instead of string.whitespace and string.digits, use isspace() | Guido van Rossum | 2001-01-02 | 1 | -6/+5 |
|
|
* | Add more tests for compare and coercion in preparation for the coercion | Neil Schemenauer | 2001-01-02 | 4 | -0/+1346 |
|
|
* | Patch by kragen@pobox.com: When tracing is turned on, lines shorter | Guido van Rossum | 2001-01-01 | 1 | -0/+2 |
|
|
* | Added test case for legal DOM children | Andrew M. Kuchling | 2000-12-31 | 2 | -2/+28 |
|
|
* | Patch #102485 ] Check for legal children when adding children to a DOM node | Andrew M. Kuchling | 2000-12-31 | 1 | -6/+30 |
|
|
* | Christmas present to myself: changed regrtest in two ways: | Tim Peters | 2000-12-30 | 1 | -4/+30 |
|
|
* | getopt used to sort the long option names, in an attempt to simplify | Tim Peters | 2000-12-29 | 1 | -12/+2 |
|
|
* | Fred, THIS NEEDS DOCS! The function docstrings tell the tale. | Tim Peters | 2000-12-29 | 3 | -4/+188 |
|
|
* | Merge with 1.8 of pulldom.py: | Martin v. Löwis | 2000-12-28 | 1 | -1/+7 |
|
|
* | Merge changes up to 1.10 from PyXML: | Martin v. Löwis | 2000-12-28 | 1 | -1/+11 |
|
|
* | Make Traceback header conform to new traceback ("innermost last" -> | Guido van Rossum | 2000-12-27 | 2 | -2/+2 |
|
|
* | Fix for SF bug | Tim Peters | 2000-12-27 | 1 | -13/+30 |
|
|