summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* SF #926075: Fixed the bug that returns a wrong pattern object forHye-Shik Chang2004-04-201-0/+8
* SF #926075: Fixed the bug that returns a wrong pattern object forHye-Shik Chang2004-04-201-2/+3
* * Restore the pure python version of heapq.py.Raymond Hettinger2004-04-191-0/+261
* Special case normalization of empty strings. Fixes #924361.Martin v. Löwis2004-04-171-0/+1
* Open file in universal newline mode when passing to compile(). SolutionSkip Montanaro2004-04-161-1/+1
* * Add unittests for iterators that report their lengthRaymond Hettinger2004-04-121-0/+245
* Fixes for AF_UNIX support on OS/2:Andrew MacIntyre2004-04-111-4/+19
* M EditorWindow.pyKurt B. Kaiser2004-04-114-69/+56
* atof: correct parameter nameSkip Montanaro2004-04-101-3/+3
* Refactor common code out of globaltrace_trackcallers() andSkip Montanaro2004-04-101-28/+56
* Added --trackcalls command line arg to display crude caller/calleeSkip Montanaro2004-04-071-18/+88
* Fix comment typoAndrew M. Kuchling2004-04-061-1/+1
* Remove specific Python version from #!Andrew M. Kuchling2004-04-061-1/+1
* OS/2 has support for spawnvp() and spawnvpe() in the C libraries suppliedAndrew MacIntyre2004-04-041-2/+5
* If a file is opened with an explicit buffer size >= 1, repeatedAndrew MacIntyre2004-04-041-0/+17
* Fix support for the "prog" keyword to the OptionParser constructor, as wellFred Drake2004-04-012-3/+24
* [Bugfix candidate] Escape traceback type and value. There are probably addit...Andrew M. Kuchling2004-03-311-1/+2
* When /tmp has certain sticky bits set, newly created subdirectoriesGuido van Rossum2004-03-311-0/+1
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-282-1/+9
* Revert 1.51 booleans so that sre will still run on old pythons.Raymond Hettinger2004-03-271-6/+6
* Simple Optimizations:Raymond Hettinger2004-03-261-73/+92
* Remove unnecessary test. (Thanks Skip)Raymond Hettinger2004-03-261-6/+0
* Fix test failure for test_tcl on OS/X and Windows if aDavid Ascher2004-03-261-7/+1
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-261-0/+5
* Simple optimizations:Raymond Hettinger2004-03-261-47/+69
* make sure the default manifest generation includes files identified asFred Drake2004-03-252-0/+6
* Added more Windows version names (thanks to Thomas Heller).Marc-André Lemburg2004-03-251-29/+23
* Fix last patch to be backwards-compatible with Python 1.5.2 .Brett Cannon2004-03-251-12/+25
* Fixed a caching bug in platform.platform() where the argument of 'terse' wasBrett Cannon2004-03-251-8/+8
* Defer compilation of regular expressions until first use.Martin v. Löwis2004-03-251-3/+7
* Use True/False instead of 0/1 for character classes.Martin v. Löwis2004-03-251-6/+6
* Ensure super() lookup of descriptor from classmethod works (SF #743627)Phillip J. Eby2004-03-251-0/+14
* fix name in setacl method doc stringPiers Lauder2004-03-251-1/+1
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-244-3/+50
* Add test case for unicode(somestring, "idna").Martin v. Löwis2004-03-241-1/+6
* Replace sequential split/join calls on strings with a single replace call.Brett Cannon2004-03-232-11/+5
* Convert input to a string object. Fixes #909230.Martin v. Löwis2004-03-231-0/+1
* Replace code in urllib for basejoin (undocumented) with urlparse.urljoin .Brett Cannon2004-03-231-59/+2
* Add runctx to __all__.Guido van Rossum2004-03-231-1/+1
* Added command line options for profile.py - one for stats output fileNicholas Bastin2004-03-231-13/+27
* Basic dependency checking. setup() has two new optional argumentsAnthony Baxter2004-03-225-3/+144
* Patch #911176: Move test function into __main__Martin v. Löwis2004-03-221-12/+12
* Added global runctx function to profile to fix SF Bug #716587Nicholas Bastin2004-03-223-6/+37
* The fix in ceval.c 2.386 allows iteration-by-iteration line tracing even inArmin Rigo2004-03-221-0/+23
* Fix (really) for tight loop line eventsNicholas Bastin2004-03-221-1/+2
* Test for tight loop line event fix, SF bug #765624Nicholas Bastin2004-03-221-0/+25
* Test for lack of implicit return line eventNicholas Bastin2004-03-221-9/+27
* New parser. Next up, making the current parser use this parserAnthony Baxter2004-03-221-0/+362
* SF bug 847019 datetime.datetime initialization needs more strict checkingTim Peters2004-03-211-0/+20
* Change parse_qsl() to accept control-name's with no equal sign (e.g., "name")Brett Cannon2004-03-211-1/+5