| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Add test case for SF bug | Tim Peters | 2000-12-27 | 1 | -0/+9 |
|
|
* | Make isspace(chr(32)) return true | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
|
|
* | The "context" parameter to the ExternalEntityRefParameter exposes internal | Fred Drake | 2000-12-23 | 2 | -4/+44 |
|
|
* | The regression test for the regex module should not trip the deprecation | Fred Drake | 2000-12-23 | 1 | -0/+3 |
|
|
* | Remove superfluous semicolons | Andrew M. Kuchling | 2000-12-23 | 3 | -8/+8 |
|
|
* | Wrapper for _curses_panel module; currently this adds nothing extra | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+9 |
|
|
* | Patch #102492, fixing bug #116677: | Andrew M. Kuchling | 2000-12-20 | 2 | -10/+42 |
|
|
* | Change expected message for ValueError, fixing bug #126400 | Andrew M. Kuchling | 2000-12-20 | 1 | -1/+1 |
|
|
* | Add forgotten initialization. Fixes bug #120994, "Traceback with | Andrew M. Kuchling | 2000-12-20 | 1 | -0/+1 |
|
|
* | Adding a warning about the regsub module. This also disables further | Guido van Rossum | 2000-12-19 | 1 | -0/+7 |
|
|
* | Be explicit about scheme_chars -- string.letters is locale dependent | Guido van Rossum | 2000-12-19 | 1 | -20/+18 |
|
|
* | Use binary mode to open "wave" files. | Guido van Rossum | 2000-12-19 | 1 | -2/+2 |
|
|
* | Improve error messages for invalid warning arguments; don't raise | Guido van Rossum | 2000-12-19 | 1 | -4/+10 |
|
|
* | Make string.translate(s, table) work for Unicode s. Two things are | Guido van Rossum | 2000-12-19 | 1 | -4/+11 |
|
|
* | Test more split argument combinations: | Guido van Rossum | 2000-12-19 | 1 | -0/+7 |
|
|