| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement iterator protocol. | Neil Schemenauer | 2002-03-26 | 1 | -4/+13 |
|
|
* | __init__(): We'll try to be more RFC 2821 compliant by providing for a | Barry Warsaw | 2002-03-26 | 1 | -2/+11 |
|
|
* | time and socket were already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -3/+1 |
|
|
* | re was already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -1/+0 |
|
|
* | os was already imported in the module, no need to re-import | Neal Norwitz | 2002-03-26 | 1 | -1/+0 |
|
|
* | Cleanup x so it is not left in module | Neal Norwitz | 2002-03-26 | 1 | -0/+1 |
|
|
* | Fix for SF 502085. | Guido van Rossum | 2002-03-26 | 1 | -1/+5 |
|
|
* | make default banner match what the real interpreter displays | Skip Montanaro | 2002-03-25 | 1 | -1/+1 |
|
|
* | remove unqualified excepts - catch ImportError when trying to import | Skip Montanaro | 2002-03-25 | 1 | -7/+2 |
|
|
* | eliminate unqualified except when checking for presence of LC_MESSAGES | Skip Montanaro | 2002-03-25 | 1 | -1/+1 |
|
|
* | tighten up unqualified except in currentframe() | Skip Montanaro | 2002-03-25 | 1 | -2/+2 |
|
|
* | Add tests for the iterkeys, itervalues and iteritems | Walter Dörwald | 2002-03-25 | 1 | -0/+29 |
|
|
* | SMTP.__init__(): Fixed minor typo in docstring. | Barry Warsaw | 2002-03-25 | 1 | -1/+1 |
|
|
* | Quote href properly. | Neil Schemenauer | 2002-03-24 | 1 | -1/+2 |
|
|
* | Remove unnecessary \b. It was causing the RE to miss the tailing | Neil Schemenauer | 2002-03-24 | 1 | -1/+1 |
|
|
* | If possible, set FD_CLOEXEC flag on file descriptors opened using | Neil Schemenauer | 2002-03-24 | 1 | -0/+12 |
|
|
* | tighten up except - os.close only raises OSError | Skip Montanaro | 2002-03-24 | 1 | -1/+1 |
|
|
* | SF bug 480215: softspace confused in nested print | Tim Peters | 2002-03-24 | 1 | -0/+14 |
|
|
* | oops - export InvalidURL in __all__ | Skip Montanaro | 2002-03-24 | 1 | -1/+1 |
|
|
* | add test for InvalidURL | Skip Montanaro | 2002-03-24 | 1 | -0/+2 |
|
|
* | add test of InvalidURL | Skip Montanaro | 2002-03-24 | 1 | -0/+10 |
|
|
* | add InvalidURL exception - raised if port is given but empty or non-numeric | Skip Montanaro | 2002-03-24 | 1 | -1/+7 |
|
|
* | tighten up except - in this context, AttributeError is the only exception | Skip Montanaro | 2002-03-24 | 1 | -2/+2 |
|
|
* | Add local_hostname option to SMTP.__init__. If supplied, it is used | Neil Schemenauer | 2002-03-24 | 1 | -10/+10 |
|
|
* | Try /var/mail before trying /usr/mail. Most new systems use /var. | Neil Schemenauer | 2002-03-24 | 1 | -1/+4 |
|
|
* | Add more tests for built-in types. Add tests for buffer objects. | Neil Schemenauer | 2002-03-24 | 2 | -0/+119 |
|
|
* | Use linecache for loading source code. Closes SF patch 490374. | Neil Schemenauer | 2002-03-23 | 1 | -7/+5 |
|
|
* | Add namespace selection for rlcompleter. Closes SF patch 490026. | Neil Schemenauer | 2002-03-23 | 1 | -12/+40 |
|
|
* | Flush stdout before reading next command. Closes SF bug 526357. | Neil Schemenauer | 2002-03-23 | 1 | -0/+1 |
|
|
* | Only AttributeError can be raised in this situation - on systems without | Skip Montanaro | 2002-03-23 | 1 | -2/+2 |
|
|
* | import statements only raise ImportError, right? | Skip Montanaro | 2002-03-23 | 1 | -1/+1 |
|
|
* | tighten up except - only ValueError can be raised in this situation | Skip Montanaro | 2002-03-23 | 1 | -1/+1 |
|
|
* | tighten up except - int() only raises ValueError | Skip Montanaro | 2002-03-23 | 1 | -1/+1 |
|
|
* | added RFC 2396 tests from Aaron Swartz included in bug # 450225. | Skip Montanaro | 2002-03-23 | 1 | -74/+116 |
|
|
* | no longer needed - converted test_urlparse.py to use unittest | Skip Montanaro | 2002-03-23 | 1 | -46/+0 |
|
|
* | SF bug 533234: tm_isdst > 1 Passed to strftime. | Tim Peters | 2002-03-23 | 2 | -18/+66 |
|
|
* | better solution for bug #533234 courtesy of Tim. | Skip Montanaro | 2002-03-22 | 1 | -1/+2 |
|
|
* | guarantee that the dst flag of synthetic "time" tuples passed to strftime | Skip Montanaro | 2002-03-22 | 1 | -1/+1 |
|
|
* | use stat attributes instead of tuple entries | Walter Dörwald | 2002-03-22 | 1 | -3/+2 |
|
|
* | Revert part of previous patch: several install_* subcommands expect | Andrew M. Kuchling | 2002-03-22 | 1 | -1/+1 |
|
|
* | Add a simple test suite for netrc.py, and remove it from test_sundry | Andrew M. Kuchling | 2002-03-22 | 2 | -1/+43 |
|
|
* | [Bug #532115] netrc module was broken | Andrew M. Kuchling | 2002-03-22 | 1 | -11/+9 |
|
|
* | Add missing Boolean options | Andrew M. Kuchling | 2002-03-21 | 1 | -3/+2 |
|
|
* | Add unlisted Boolean options. Thomas H., can you please check that I | Andrew M. Kuchling | 2002-03-21 | 1 | -1/+2 |
|
|
* | [Bug #517451] bdist_rpm didn't list all of its Boolean options. | Andrew M. Kuchling | 2002-03-21 | 1 | -1/+1 |
|
|
* | [Apply SF patch #504943] | Walter Dörwald | 2002-03-21 | 1 | -5/+14 |
|
|
* | Do not insert characters for unicode-escape decoders if the error mode | Martin v. Löwis | 2002-03-21 | 1 | -0/+8 |
|
|
* | [Apply patch #500457 from the PyXML tracker] | Andrew M. Kuchling | 2002-03-20 | 1 | -0/+9 |
|
|
* | Change raw "except:" constructs to pass on KeyboardInterrupt. | Tim Peters | 2002-03-20 | 1 | -0/+4 |
|
|
* | Make GzipFile an iterator. Closes bug #532621. | Neil Schemenauer | 2002-03-20 | 1 | -0/+10 |
|
|