| Commit message (Expand) | Author | Age | Files | Lines |
* | Before calling traceback.print_exc(), call sys.stdout.flush(). This makes | Fred Drake | 2000-12-15 | 1 | -0/+1 |
|
|
* | DOMException.__init__(): Remember to pass self to Exception.__init__(). | Fred Drake | 2000-12-15 | 1 | -1/+1 |
|
|
* | Comment out a debugging print statement that triggered a complaint in | Guido van Rossum | 2000-12-15 | 1 | -1/+1 |
|
|
* | Get rid of string functions. | Guido van Rossum | 2000-12-15 | 1 | -15/+14 |
|
|
* | Get rid of string functions. References to string.whitespace, | Guido van Rossum | 2000-12-15 | 1 | -63/+57 |
|
|
* | Get rid of string functions. | Guido van Rossum | 2000-12-15 | 1 | -14/+12 |
|
|
* | Get rid of string functions, except maketrans() (which is *not* | Guido van Rossum | 2000-12-15 | 1 | -42/+45 |
|
|
* | Add test case for error message raised by bad % format character | Andrew M. Kuchling | 2000-12-15 | 1 | -0/+25 |
|
|
* | Update the test suite to cover more ground. | Fred Drake | 2000-12-14 | 2 | -0/+9 |
|
|
* | Lots of small bug fixes and DOM API conformance improvements: | Fred Drake | 2000-12-14 | 1 | -49/+145 |
|
|
* | Adjust PullDOM to use a DOMImplementation instance to create new Document | Fred Drake | 2000-12-14 | 1 | -26/+37 |
|
|
* | When raising KeyError, provide the key value that failed. | Fred Drake | 2000-12-13 | 1 | -4/+4 |
|
|
* | Changing allow_reuse_address's default value, and documenting it. | Moshe Zadka | 2000-12-13 | 1 | -1/+1 |
|
|
* | Untabify! (Barry, this is gonna cost you a bottle of wine! ;) | Fred Drake | 2000-12-13 | 1 | -105/+105 |
|
|
* | Get rid of string module and string exceptions. | Guido van Rossum | 2000-12-13 | 1 | -7/+10 |
|
|
* | Add code to DOMException to ensure it cannot be instantiated directly, | Fred Drake | 2000-12-13 | 1 | -1/+8 |
|
|
* | Add standard DOM exception hierarchy. | Martin v. Löwis | 2000-12-13 | 1 | -0/+68 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 36 | -99/+101 |
|
|
* | Change the file's indentation from tabs to 4 spaces per level. | Barry Warsaw | 2000-12-12 | 1 | -151/+163 |
|
|
* | Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno | Barry Warsaw | 2000-12-12 | 1 | -13/+16 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 55 | -519/+520 |
|
|
* | The ".pth" code knew about the layout of Python trees on unix and | Jack Jansen | 2000-12-12 | 1 | -0/+2 |
|
|
* | Add popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+2 |
|
|
* | Added test for {}.popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+24 |
|
|
* | Changed .getaliases() support to register the new aliases in the | Marc-André Lemburg | 2000-12-12 | 1 | -4/+12 |
|
|
* | Update the docstring. | Fred Drake | 2000-12-11 | 1 | -2/+31 |
|
|
* | Added tests to avoid regression on bug #125375. | Fred Drake | 2000-12-11 | 2 | -1/+34 |
|
|
* | Apply rstrip() to the lines read from _dirfile in _update(), so that a | Guido van Rossum | 2000-12-11 | 1 | -1/+1 |
|
|
* | Hoepeful fix for SF bug #123924: Windows - using OpenSSL, problem with | Guido van Rossum | 2000-12-11 | 1 | -1/+4 |
|
|
* | Make ConfigParser.Error inherit from Exception. | Fred Drake | 2000-12-11 | 1 | -1/+3 |
|
|
* | (Patch #102698) Fix for a bug reported by Wade Leftwich: | Andrew M. Kuchling | 2000-12-10 | 1 | -4/+4 |
|
|
* | Fix `credits' to credit the Jython developers when running under that | Barry Warsaw | 2000-12-06 | 1 | -3/+9 |
|
|
* | Two changes: | Sjoerd Mullender | 2000-12-06 | 1 | -8/+16 |
|
|
* | Add test cases for ConfigParser.remove_option() behavior. This includes | Fred Drake | 2000-12-04 | 1 | -0/+24 |
|
|
* | remove_option(): Use the right variable name for the option name! | Fred Drake | 2000-12-04 | 1 | -2/+2 |
|
|
* | Call of _cmp had wrong number of paramereters. | Moshe Zadka | 2000-12-03 | 1 | -2/+2 |
|
|
* | Convert Unicode strings to byte strings before passing them into specific | Martin v. Löwis | 2000-12-03 | 1 | -14/+25 |
|
|
* | Backing out my changes. | Moshe Zadka | 2000-11-30 | 1 | -6/+0 |
|
|
* | Added .first{item,value,key}() to dictionaries. | Moshe Zadka | 2000-11-30 | 1 | -0/+6 |
|
|
* | Fox for SF bug #123859: %[duxXo] long formats inconsistent. | Tim Peters | 2000-11-30 | 1 | -5/+16 |
|
|
* | Slight improvement to Unicode test suite, inspired by patch #102563: | Guido van Rossum | 2000-11-29 | 1 | -9/+11 |
|
|
* | Patch by Finn Bock to support PyStringMap in Jython. | Guido van Rossum | 2000-11-27 | 1 | -0/+9 |
|
|
* | Update test output. | Fred Drake | 2000-11-21 | 1 | -2/+18 |
|
|
* | testInsertBefore(): Rewritten to actually test insertBefore() somewhat. | Fred Drake | 2000-11-21 | 1 | -14/+103 |
|
|
* | Reduce the visibility of imported modules for cleaner "from ... import *" | Fred Drake | 2000-11-21 | 1 | -76/+181 |
|
|
* | Verify that str(a) and repr(a) don't blow up (part of SF patch 102068). | Tim Peters | 2000-11-14 | 1 | -0/+5 |
|
|
* | Typo for Mac code, fixing SF bug 12195. | Guido van Rossum | 2000-11-13 | 1 | -1/+1 |
|
|
* | Removing DOS 8x3 support | Guido van Rossum | 2000-11-13 | 113 | -18934/+0 |
|
|
* | Jack Jansen: added 'get_command_list()' method, and Mac-specific code to | Greg Ward | 2000-11-11 | 1 | -0/+38 |
|
|
* | Implement the suggestion of bug_id=122070: surround tell() call with | Guido van Rossum | 2000-11-09 | 1 | -1/+5 |
|
|