summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* global _option_order is not usedJeremy Hylton2002-06-041-6/+0
* Fix bug in recent change to logging code.Jeremy Hylton2002-06-041-1/+1
* Fix unused local variables caught by pychecker.Jeremy Hylton2002-06-046-22/+8
* Set repeat metadata for an option based on repeat local var notJeremy Hylton2002-06-041-1/+1
* Remove unused imports caught by pycheckerJeremy Hylton2002-06-044-5/+2
* Make setup.py less chatty by default.Jeremy Hylton2002-06-0432-313/+260
* A simple log mechanism styled after the proposed std library moduleJeremy Hylton2002-06-041-0/+56
* Address SF bug 519621: slots weren't traversed by GC.Guido van Rossum2002-06-041-0/+51
* The comment said:Jeremy Hylton2002-06-041-20/+0
* When using a Python that has not been installed to build 3rd-partyFred Drake2002-06-041-14/+22
* Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE,Walter Dörwald2002-06-041-17/+32
* Test repair now that module.__init__ requires a name and initializesGuido van Rossum2002-06-041-6/+7
* Repair the test (adding a docstring to the module type changed theGuido van Rossum2002-06-041-1/+1
* Surprising fix for SF bug 563060: module can be used as base class.Guido van Rossum2002-06-041-0/+48
* Replace .keys() with .iteritems(). Second review and test by Alex.Raymond Hettinger2002-06-041-2/+2
* The warning filter was ineffective when this module was invoked as aGuido van Rossum2002-06-031-1/+1
* Fix HTTPError __init__ for cases where fp is None.Jeremy Hylton2002-06-031-2/+6
* Remove uses of the string and types modules:Walter Dörwald2002-06-0315-71/+43
* Fix a regression from the 1.68->1.69 checkin:Walter Dörwald2002-06-031-1/+1
* regrtest has a newTim Peters2002-06-021-7/+34
* _parsebody(): Fix for the new message/rfc822 tree structure (theBarry Warsaw2002-06-021-4/+3
* Generator.__call__() => Generator.flatten()Barry Warsaw2002-06-021-28/+56
* header_encode(), encode(): Use _floordiv() from the appropriateBarry Warsaw2002-06-021-2/+9
* Use absolute import paths for intrapackage imports.Barry Warsaw2002-06-021-2/+2
* Use absolute import paths for intrapackage imports.Barry Warsaw2002-06-021-5/+5
* Use absolute import paths for intrapackage imports.Barry Warsaw2002-06-025-22/+23
* flatten(): Renamed from __call__() which is (silently) deprecated.Barry Warsaw2002-06-021-7/+11
* _intdiv2() -> _floordiv(), merge of uncommitted changes.Barry Warsaw2002-06-022-8/+8
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-029-50/+46
* Get email test to pass. Barry, hope this is what you had in mindNeal Norwitz2002-06-022-6/+6
* Make test_mhlib run again.Michael W. Hudson2002-06-021-1/+1
* Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint.Martin v. Löwis2002-06-021-0/+2
* Replaced boolean tests with is None.Raymond Hettinger2002-06-025-14/+14
* Replace boolean test with is None.Raymond Hettinger2002-06-026-10/+10
* Replaced obsolete stat module constants with equivalent attributesRaymond Hettinger2002-06-0118-79/+59
* Replace boolean test with is None.Raymond Hettinger2002-06-017-12/+12
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-3/+3
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-0154-222/+243
* Bump to version 2.0.5, and also use absolute import paths.Barry Warsaw2002-06-011-3/+3
* These two classes provide bases for more specific content typeBarry Warsaw2002-06-012-0/+54
* The _compat modules now export _floordiv() instead of _intdiv2() forBarry Warsaw2002-06-011-5/+4
* Slightly better docstringBarry Warsaw2002-06-011-1/+1
* _is_unicode(): Use UnicodeType instead of the unicode builtin forBarry Warsaw2002-06-011-1/+3
* Replaced boolean test with is NoneRaymond Hettinger2002-06-013-4/+4
* Replace boolean test with is NoneRaymond Hettinger2002-06-014-5/+5
* Replaced boolean test with 'is None'Raymond Hettinger2002-06-012-5/+5
* Use is None rather than general booleanRaymond Hettinger2002-06-011-2/+2
* Use is None rather than general booleanRaymond Hettinger2002-05-311-1/+1
* Use is None rather than general booleanRaymond Hettinger2002-05-311-1/+1
* SF 560736. Optimize list iteration by filling the tp_iter slot.Raymond Hettinger2002-05-311-0/+1