summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-063-69/+267
* Remove uses of string module and stat.ST_MODENeal Norwitz2002-06-063-11/+7
* Remove another reference to stat.ST_MODENeal Norwitz2002-06-061-1/+1
* Use isinstance for the type check, use booleans.Martin v. Löwis2002-06-061-4/+4
* Fix from SF patch 565085: copy._reduction doesn't __setstate__.Guido van Rossum2002-06-061-0/+29
* Fix from SF patch 565085: copy._reduction doesn't __setstate__.Guido van Rossum2002-06-061-1/+4
* Close SF bug 563740. complex() now finds __complex__() in new style classes.Raymond Hettinger2002-06-061-0/+11
* Change warning to debug level; it's a very minor issue.Jeremy Hylton2002-06-061-2/+2
* Patch 473512: add GNU style scanning as gnu_getopt.Martin v. Löwis2002-06-062-2/+88
* Patch #551911: Escape . properly.Martin v. Löwis2002-06-061-1/+1
* Replace obsolete stat module constants withWalter Dörwald2002-06-062-5/+5
* Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.Raymond Hettinger2002-06-052-1/+6
* open method changed to use arguments and set instance host/port values (inste...Piers Lauder2002-06-051-8/+12
* SF bug 558179.Guido van Rossum2002-06-053-9/+2
* Move warning about directory not on sys.path to debug level.Jeremy Hylton2002-06-041-8/+10
* Test changes before checking them in.Jeremy Hylton2002-06-041-1/+1
* Track extra arg to option_table to all uses of itJeremy Hylton2002-06-041-2/+2
* Replace bogus bare variables with attribute access.Jeremy Hylton2002-06-041-3/+4
* Define DEBUG as early as possible to avoid import problems.Jeremy Hylton2002-06-041-5/+5
* Add missing import of log.Jeremy Hylton2002-06-041-0/+1
* Use module-level import of DEBUG instead of many function-level imports.Jeremy Hylton2002-06-041-4/+1
* Remove unused importsJeremy Hylton2002-06-042-2/+0
* Make None return explicitJeremy Hylton2002-06-041-1/+1
* import base64 at the top to avoid two different imports at other timesJeremy Hylton2002-06-041-2/+2
* ensure_filename() only takes one argument.Jeremy Hylton2002-06-041-6/+4
* Reindent lines to improve readabilityJeremy Hylton2002-06-041-3/+3
* Remove (commented out) options that have moved into the distribution.Jeremy Hylton2002-06-041-13/+0
* get_script() implicitly returned None and also had explicit returns.Jeremy Hylton2002-06-041-26/+25
* 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