summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-0426-93/+88
* Replace use of apply() with extended call syntax.Jeremy Hylton2002-04-041-2/+3
* Support manual proxy configuration for simple urlopen() operations.Fred Drake2002-04-041-5/+10
* Not sure why the regression test missed this, but the PyXML tests caught it.Fred Drake2002-04-041-1/+1
* Avoid creating circular references between the ExpatParser and theFred Drake2002-04-041-1/+38
* Removed old Digital Creations copyright/license notices (withGuido van Rossum2002-04-041-1/+1
* Add test case for SF bug 534347.Guido van Rossum2002-04-041-0/+8
* Oops. Here are the new files. My apologies.Guido van Rossum2002-04-031-0/+228
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-0312-186/+204
* Fix bugs:Mark Hammond2002-04-032-0/+39
* SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super()Guido van Rossum2002-04-021-0/+8
* Fix for a bug in the fix for SF bug 503031. This time the OP verifiedGuido van Rossum2002-04-021-2/+2
* Add an experimental mechanism to support extending the pprint formatting.Fred Drake2002-04-022-9/+34
* Make test_commands work on more systems. This removes much of the dependencyFred Drake2002-04-011-4/+5
* Format strings (tuples,) appropriatelyNeal Norwitz2002-04-012-3/+3
* Use attributes appropriatelyNeal Norwitz2002-04-012-2/+2
* There is no TestError, use TestFailed appropriatelyNeal Norwitz2002-04-013-10/+10
* We expect to skip the new test_mpz on Windows.Tim Peters2002-04-011-1/+5
* Get rid of all METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-011-0/+90
* Remove some now-obsolete generator future statements.Tim Peters2002-04-016-19/+5
* Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-011-0/+15
* Hopeful fix for SF bug 503031: urllib.py: open_http() host problem.Guido van Rossum2002-03-311-1/+5
* Use docstrings for exception classesNeal Norwitz2002-03-312-2/+4
* Derive exception classes from ExceptionNeal Norwitz2002-03-312-2/+2
* Stop using string exceptionsNeal Norwitz2002-03-312-2/+2
* [Patch #536769] Add -Xcompiler flag for adding arguments and switches forAndrew M. Kuchling2002-03-291-0/+2
* As part of fixing bug #536241, add a test case for string.zfill() with UnicodeAndrew M. Kuchling2002-03-291-1/+4
* [Bug #536241] string.zfill() produces mangled output for a Unicode string.Andrew M. Kuchling2002-03-291-8/+8
* Add two tests for string.zfillAndrew M. Kuchling2002-03-291-0/+3
* Fix getcomments() so that it doesn't fail with TypeErrors.Jeremy Hylton2002-03-281-3/+8
* test_trashcan: reword obscure code.Tim Peters2002-03-281-1/+1
* New test_traschcan() test in test_gc, which reliably provokes segfaultsTim Peters2002-03-281-0/+29
* Reindent.Martin v. Löwis2002-03-281-551/+550
* Add a simple test of the METH_CLASS and METH_STATIC flags for type methods.Fred Drake2002-03-281-0/+30
* Patch #536117: Typo in turtle.py.Martin v. Löwis2002-03-281-1/+1
* Destroy and unlink deleted NoteBook panes. Fixes #516703.Martin v. Löwis2002-03-271-1/+2
* Ignore widgets with unknown names in winfo_children. Fixes #518283.Martin v. Löwis2002-03-271-3/+11
* further work on new config system;Steven M. Gava2002-03-273-8/+79
* further work on new config system;Steven M. Gava2002-03-275-26/+56
* _finally_ tracked down and eliminated a major problemSteven M. Gava2002-03-271-4/+7
* Implement iterator protocol.Neil Schemenauer2002-03-261-4/+13
* __init__(): We'll try to be more RFC 2821 compliant by providing for aBarry Warsaw2002-03-261-2/+11
* time and socket were already imported in the module, no need to re-importNeal Norwitz2002-03-261-3/+1
* re was already imported in the module, no need to re-importNeal Norwitz2002-03-261-1/+0
* os was already imported in the module, no need to re-importNeal Norwitz2002-03-261-1/+0
* Cleanup x so it is not left in moduleNeal Norwitz2002-03-261-0/+1
* Fix for SF 502085.Guido van Rossum2002-03-261-1/+5
* make default banner match what the real interpreter displaysSkip Montanaro2002-03-251-1/+1
* remove unqualified excepts - catch ImportError when trying to importSkip Montanaro2002-03-251-7/+2
* eliminate unqualified except when checking for presence of LC_MESSAGESSkip Montanaro2002-03-251-1/+1