summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-186-40/+96
* Merged revisions 60001,60003-60004,60008 via svnmerge fromThomas Heller2008-01-173-3/+26
* Update the py3k version of the rational module to expose only methods needed byJeffrey Yasskin2008-01-173-53/+20
* Sync-up Queue.py with Py2.6Raymond Hettinger2008-01-171-2/+38
* __floordiv__ returns an int in 3.0.Jeffrey Yasskin2008-01-161-4/+2
* Merged revisions 59952-59984 via svnmerge fromGuido van Rossum2008-01-156-8/+726
* Refactor if/elif chain for clarity and speedRaymond Hettinger2008-01-151-11/+10
* long(float('nan')) raises an OverflowError as discussed on the mailing list a...Christian Heimes2008-01-151-1/+1
* Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping t...Raymond Hettinger2008-01-143-51/+34
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-143-5/+22
* Take Tim's advice and have random.sample() support only sequences and sets.Raymond Hettinger2008-01-142-47/+17
* Remove defunct parts of the random moduleRaymond Hettinger2008-01-133-247/+27
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-124-55/+34
* Merged revisions 59883-59920 via svnmerge fromChristian Heimes2008-01-119-92/+141
* Good catch Neal!Christian Heimes2008-01-111-1/+2
* Added the test cases I actually meant to add.Eric Smith2008-01-111-0/+5
* Simplifed argument parsing in object.__format__, added test case.Eric Smith2008-01-111-0/+4
* Merged revisions 59864-59882 via svnmerge fromChristian Heimes2008-01-101-0/+10
* Merged revisions 59843-59863 via svnmerge fromChristian Heimes2008-01-096-27/+184
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-076-17/+130
* Another patch for #1762972: __file__ points to the py file instead pyo/pyc fileChristian Heimes2008-01-071-1/+22
* Fix issue1753: TextIOWrapper.write writes utf BOM for every string.Alexandre Vassalotti2008-01-072-4/+26
* Copied doc for reload() from trunk's function.rst to imp.rstChristian Heimes2008-01-074-8/+112
* Issue #1762972: Readded the reload() function as imp.reload()Christian Heimes2008-01-072-0/+48
* Missed one because of indirection.Georg Brandl2008-01-061-1/+1
* The final occurrences of exception slicing.Georg Brandl2008-01-063-4/+4
* Fix more exception slicing.Georg Brandl2008-01-067-12/+12
* Fix exception slicing.Georg Brandl2008-01-061-3/+3
* Merged revisions 59774-59783 via svnmerge fromChristian Heimes2008-01-061-0/+5
* Merged revisions 59703-59773 via svnmerge fromChristian Heimes2008-01-0612-36/+101
* Add unit tests for the newlines property of IncrementalNewlineDecoder.Alexandre Vassalotti2008-01-061-0/+16
* Issue #1393: object_richcompare() returns NotImplemented instead ofGuido van Rossum2008-01-061-0/+16
* Fix bug introduced by r59746.Georg Brandl2008-01-051-1/+1
* Make math.floor and math.ceil return ints instead of floats.Jeffrey Yasskin2008-01-051-0/+2
* Remove several mentions of old Python versions that don't apply anymore.Georg Brandl2008-01-057-41/+1
* Remove dead code brought in by merge glitch @ r59667Kurt B. Kaiser2008-01-051-71/+0
* Fix merge glitch.Guido van Rossum2008-01-051-1/+1
* Fixed test_longChristian Heimes2008-01-041-2/+2
* Merged revisions 59696-59702 via svnmerge fromChristian Heimes2008-01-041-109/+2
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-043-3/+7
* Fixed unichr() -> chr()Christian Heimes2008-01-041-2/+2
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-034-2/+56
* Merged revisions 59642-59665 via svnmerge fromChristian Heimes2008-01-023-3/+87
* Get rid of raw_input() emulation, use its reincarnation as input().Guido van Rossum2008-01-021-7/+2
* Fix issue #1707. When raw_input() was removed, it was incorrectly replacedGuido van Rossum2008-01-021-5/+4
* Patch #1703 by Philip Jenvey -- getpass() should flush after writing prompt.Guido van Rossum2008-01-011-0/+1
* Merged revisions 59628-59641 via svnmerge fromChristian Heimes2008-01-012-2/+5
* Merged revisions 59605-59624 via svnmerge fromChristian Heimes2007-12-316-13/+13
* Don't close sys.stdin with quit() if sys.stdin wraps fd 0. Otherwise it will ...Christian Heimes2007-12-311-1/+6
* Use strings for all entity values, as that is now possibleMartin v. Löwis2007-12-291-4/+1