summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-182-4/+28
* Added LoggerAdapter class, changed copyright dates, made check for extra para...Vinay Sajip2008-01-181-5/+95
* Issue #1861: Add read-only attribute listing upcoming events in the order th...Raymond Hettinger2008-01-171-7/+24
* Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339Gregory P. Smith2008-01-171-10/+30
* Comply with RFC 3207.Gregory P. Smith2008-01-171-0/+8
* Make starmap() match its pure python definition and accept any itertable inpu...Raymond Hettinger2008-01-171-1/+2
* Add queues will alternative fetch orders (priority based and stack based).Raymond Hettinger2008-01-162-14/+57
* Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, forThomas Heller2008-01-161-1/+1
* Raise a TypeError instead of a ValueError when too many initializersThomas Heller2008-01-161-4/+4
* Raise a TypeError if conflicting positional and named arguments areThomas Heller2008-01-161-0/+9
* Convert the internal ctypes array type cache to a WeakValueDict soThomas Heller2008-01-161-0/+14
* Docstring typosAndrew M. Kuchling2008-01-161-3/+3
* test_doctest fails since r59984.Amaury Forgeot d'Arc2008-01-151-0/+2
* Refactor if/elif chain for clarity and speed. Remove dependency on subclasse...Raymond Hettinger2008-01-151-30/+23
* Issue #1786 (by myself): pdb should use its own stdin/stdout around anGuido van Rossum2008-01-151-2/+8
* Add rational.Rational as an implementation of numbers.Rational with infiniteJeffrey Yasskin2008-01-153-3/+711
* Temporarily revert 59967 until GC can be added.Raymond Hettinger2008-01-151-6/+0
* Issue 1820: structseq objects did not work with the % formatting operator or...Raymond Hettinger2008-01-151-0/+6
* Typo fixesAndrew M. Kuchling2008-01-151-1/+1
* Fix 1698398: Zipfile.printdir() crashed because the format string expected a...Raymond Hettinger2008-01-141-2/+2
* Now that I've learnt about structseq objects I felt like converting sys.float...Christian Heimes2008-01-141-1/+1
* Applied patch #1816: sys.flags patchChristian Heimes2008-01-141-0/+12
* Added new an better structseq representation. E.g. repr(time.gmtime(0)) now r...Christian Heimes2008-01-141-1/+5
* Check in the patch proposed by Ben Hayden (benjhayden) for issueKa-Ping Yee2008-01-131-3/+5
* Issue 1780: Allow leading and trailing whitespace in Decimal constructor,Mark Dickinson2008-01-122-3/+22
* Raise an error instead of crashing with a segfault when a NULLThomas Heller2008-01-111-0/+6
* Speed-up and simplify code urlparse's result objects.Raymond Hettinger2008-01-111-52/+6
* Improve usability of the SequenceMatcher by returning named tuples describing...Raymond Hettinger2008-01-111-7/+10
* Let most inspect functions return named tuplesRaymond Hettinger2008-01-111-5/+19
* Have Decimal.as_tuple return a named tuple.Raymond Hettinger2008-01-111-1/+7
* Doctest results return a named tuple for readabilityRaymond Hettinger2008-01-112-70/+73
* Run doctests on the collections moduleRaymond Hettinger2008-01-111-2/+4
* Neaten-up the named tuple docsRaymond Hettinger2008-01-101-1/+1
* Closing issue1761.Amaury Forgeot d'Arc2008-01-101-0/+12
* Clarify how to add a field to a named tuple.Raymond Hettinger2008-01-101-0/+3
* Examples for named tuple subclassing should include __slots__Raymond Hettinger2008-01-101-1/+3
* Fixed #1776. __import__() no longer imports modules by file nameChristian Heimes2008-01-091-1/+11
* Added __enter__ and __exit__ functions to HKEY objectChristian Heimes2008-01-081-20/+25
* Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objectsAndrew M. Kuchling2008-01-081-2/+128
* Issue #1757: The hash of a Decimal instance is no longer affectedFacundo Batista2008-01-082-3/+28
* It's verbose, not debugChristian Heimes2008-01-081-1/+1
* Expand comment.Raymond Hettinger2008-01-081-1/+2
* Use get() instead of pop() for the optimized version of _replace().Raymond Hettinger2008-01-071-1/+1
* Cleanup named tuple subclassing example.Raymond Hettinger2008-01-071-3/+4
* Fixed indention problem that caused the second TIPC test to run on systems wi...Christian Heimes2008-01-071-1/+1
* #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.Georg Brandl2008-01-072-1/+113
* Issue #1646: Make socket support TIPC. The socket module now has supportChristian Heimes2008-01-071-0/+82
* Add another named tuple subclassing example.Raymond Hettinger2008-01-071-0/+8
* Fix issue 1747: allow classic classes to be checked for being subclasses ofJeffrey Yasskin2008-01-072-5/+12
* Cleanup subclassing example to more clearly show fixed-width print format.Raymond Hettinger2008-01-071-2/+1