| Commit message (Expand) | Author | Age | Files | Lines |
* | The comment said: | Jeremy Hylton | 2002-06-04 | 1 | -20/+0 |
|
|
* | When using a Python that has not been installed to build 3rd-party | Fred Drake | 2002-06-04 | 1 | -14/+22 |
|
|
* | Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, | Walter Dörwald | 2002-06-04 | 1 | -17/+32 |
|
|
* | Test repair now that module.__init__ requires a name and initializes | Guido van Rossum | 2002-06-04 | 1 | -6/+7 |
|
|
* | Repair the test (adding a docstring to the module type changed the | Guido van Rossum | 2002-06-04 | 1 | -1/+1 |
|
|
* | Surprising fix for SF bug 563060: module can be used as base class. | Guido van Rossum | 2002-06-04 | 1 | -0/+48 |
|
|
* | Replace .keys() with .iteritems(). Second review and test by Alex. | Raymond Hettinger | 2002-06-04 | 1 | -2/+2 |
|
|
* | The warning filter was ineffective when this module was invoked as a | Guido van Rossum | 2002-06-03 | 1 | -1/+1 |
|
|
* | Fix HTTPError __init__ for cases where fp is None. | Jeremy Hylton | 2002-06-03 | 1 | -2/+6 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 15 | -71/+43 |
|
|
* | Fix a regression from the 1.68->1.69 checkin: | Walter Dörwald | 2002-06-03 | 1 | -1/+1 |
|
|
* | regrtest has a new | Tim Peters | 2002-06-02 | 1 | -7/+34 |
|
|
* | _parsebody(): Fix for the new message/rfc822 tree structure (the | Barry Warsaw | 2002-06-02 | 1 | -4/+3 |
|
|
* | Generator.__call__() => Generator.flatten() | Barry Warsaw | 2002-06-02 | 1 | -28/+56 |
|
|
* | header_encode(), encode(): Use _floordiv() from the appropriate | Barry Warsaw | 2002-06-02 | 1 | -2/+9 |
|
|
* | Use absolute import paths for intrapackage imports. | Barry Warsaw | 2002-06-02 | 1 | -2/+2 |
|
|
* | Use absolute import paths for intrapackage imports. | Barry Warsaw | 2002-06-02 | 1 | -5/+5 |
|
|
* | Use absolute import paths for intrapackage imports. | Barry Warsaw | 2002-06-02 | 5 | -22/+23 |
|
|
* | flatten(): Renamed from __call__() which is (silently) deprecated. | Barry Warsaw | 2002-06-02 | 1 | -7/+11 |
|
|
* | _intdiv2() -> _floordiv(), merge of uncommitted changes. | Barry Warsaw | 2002-06-02 | 2 | -8/+8 |
|
|
* | Replaced .keys() with dictionary iterators | Raymond Hettinger | 2002-06-02 | 9 | -50/+46 |
|
|
* | Get email test to pass. Barry, hope this is what you had in mind | Neal Norwitz | 2002-06-02 | 2 | -6/+6 |
|
|
* | Make test_mhlib run again. | Michael W. Hudson | 2002-06-02 | 1 | -1/+1 |
|
|
* | Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. | Martin v. Löwis | 2002-06-02 | 1 | -0/+2 |
|
|
* | Replaced boolean tests with is None. | Raymond Hettinger | 2002-06-02 | 5 | -14/+14 |
|
|
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-02 | 6 | -10/+10 |
|
|
* | Replaced obsolete stat module constants with equivalent attributes | Raymond Hettinger | 2002-06-01 | 18 | -79/+59 |
|
|
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-01 | 7 | -12/+12 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -3/+3 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 54 | -222/+243 |
|
|
* | Bump to version 2.0.5, and also use absolute import paths. | Barry Warsaw | 2002-06-01 | 1 | -3/+3 |
|
|
* | These two classes provide bases for more specific content type | Barry Warsaw | 2002-06-01 | 2 | -0/+54 |
|
|
* | The _compat modules now export _floordiv() instead of _intdiv2() for | Barry Warsaw | 2002-06-01 | 1 | -5/+4 |
|
|
* | Slightly better docstring | Barry Warsaw | 2002-06-01 | 1 | -1/+1 |
|
|
* | _is_unicode(): Use UnicodeType instead of the unicode builtin for | Barry Warsaw | 2002-06-01 | 1 | -1/+3 |
|
|
* | Replaced boolean test with is None | Raymond Hettinger | 2002-06-01 | 3 | -4/+4 |
|
|
* | Replace boolean test with is None | Raymond Hettinger | 2002-06-01 | 4 | -5/+5 |
|
|
* | Replaced boolean test with 'is None' | Raymond Hettinger | 2002-06-01 | 2 | -5/+5 |
|
|
* | Use is None rather than general boolean | Raymond Hettinger | 2002-06-01 | 1 | -2/+2 |
|
|
* | Use is None rather than general boolean | Raymond Hettinger | 2002-05-31 | 1 | -1/+1 |
|
|
* | Use is None rather than general boolean | Raymond Hettinger | 2002-05-31 | 1 | -1/+1 |
|
|
* | SF 560736. Optimize list iteration by filling the tp_iter slot. | Raymond Hettinger | 2002-05-31 | 1 | -0/+1 |
|
|
* | SF bug 533625 (Armin Rigo). rexec: potential security hole | Guido van Rossum | 2002-05-31 | 1 | -1/+11 |
|
|
* | Use string methods, remove import string | Neal Norwitz | 2002-05-31 | 1 | -4/+3 |
|
|
* | Use more string methods, remove import string | Neal Norwitz | 2002-05-31 | 3 | -18/+12 |
|
|
* | Replace '== None' with 'is None' | Raymond Hettinger | 2002-05-31 | 2 | -2/+2 |
|
|
* | Fix printing plural (s or ""). | Neal Norwitz | 2002-05-31 | 1 | -1/+1 |
|
|
* | Remove import of re, it is not used | Neal Norwitz | 2002-05-31 | 1 | -1/+1 |
|
|
* | Use string methods where possible, and remove import string | Neal Norwitz | 2002-05-31 | 3 | -13/+11 |
|
|
* | Fix SF bug [ 561825 ] Confusing error for "del f()" | Jeremy Hylton | 2002-05-31 | 1 | -0/+34 |
|
|