| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Test some Unicode pickling endcases. | Guido van Rossum | 2000-12-19 | 1 | -0/+12 |
|
|
* | Minimal fix for the complaints about pickling Unicode objects. (SF | Guido van Rossum | 2000-12-19 | 1 | -0/+2 |
|
|
* | gdbm.open() no longer accepts garbage in the flags string. Fix the tests. | Neil Schemenauer | 2000-12-18 | 1 | -2/+7 |
|
|
* | Do not assume that types.UnicodeType exists; we might be running in an old | Fred Drake | 2000-12-16 | 1 | -1/+5 |
|
|
* | Use the string module instead of string methods; this should still work | Fred Drake | 2000-12-16 | 1 | -1/+3 |
|
|
* | Typo caught by /F -- thanks! | Fred Drake | 2000-12-15 | 1 | -1/+1 |
|
|
* | Python part of the warnings subsystem. | Guido van Rossum | 2000-12-15 | 1 | -0/+227 |
|
|
* | 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 |
|
|