summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-23142-173/+67
* #1433694: minidom's .normalize() failed to set .nextSibling for last element.Andrew M. Kuchling2008-02-232-0/+10
* #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.Andrew M. Kuchling2008-02-232-70/+58
* #1119331: ncurses will just call exit() if the terminal name isn't found.Andrew M. Kuchling2008-02-231-0/+4
* #2067: file.__exit__() now calls subclasses' close() method.Georg Brandl2008-02-231-1/+17
* Issue 1089358. Adds the siginterrupt() function, that is just aFacundo Batista2008-02-231-2/+46
* #2165: fix test_logging failure on some machines.Georg Brandl2008-02-231-23/+13
* #1492: allow overriding BaseHTTPServer's content type for error messages.Georg Brandl2008-02-231-2/+5
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-234-80/+127
* Issue 1781. Now ConfigParser.add_section does not let you add aFacundo Batista2008-02-232-1/+13
* Issue 1776581. Minor corrections to smtplib, and two small tests.Facundo Batista2008-02-232-4/+5
* Issue 1881. Increased the stack limit from 500 to 1500. Also addedFacundo Batista2008-02-231-0/+17
* Added future_builtins, which contains PEP 3127 compatible versions of hex() a...Eric Smith2008-02-231-0/+27
* Improve the implementation of itertools.product()Raymond Hettinger2008-02-231-0/+3
* Tests for bin() builtin. These need to get merged into py3k, which has no te...Eric Smith2008-02-221-0/+9
* Try to make command line error messages from runpy easier to understand (and ...Nick Coghlan2008-02-221-1/+17
* First draft for itertools.product(). Docs and other updates forthcoming.Raymond Hettinger2008-02-221-0/+28
* Moved test_format into the correct TestCase.Eric Smith2008-02-211-39/+39
* Update more instances of has_key().Raymond Hettinger2008-02-212-5/+5
* Replace 'has_key()' with 'in'.Thomas Heller2008-02-215-13/+11
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-2116-39/+39
* Close manifest file.Andrew M. Kuchling2008-02-211-0/+1
* Trim leading zeros from a floating point exponent, per C99. See issue 1600. ...Eric Smith2008-02-201-7/+31
* Added code to correct combining str and unicode in ''.format(). Added test c...Eric Smith2008-02-181-0/+9
* Temporarily removed float tests. See issue 1600.Eric Smith2008-02-181-6/+7
* Issue 1224. Now we support again the double slash in the URL.Facundo Batista2008-02-182-1/+43
* Issue #1916. Added isgenerator() and isgeneratorfunction() toFacundo Batista2008-02-182-14/+65
* #2133: fix HTML color spec.Georg Brandl2008-02-171-1/+1
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-178-0/+1141
* Issue 2112. mmap does not raises EnvironmentError no more, butFacundo Batista2008-02-171-0/+5
* Move test_logging over to doctest.Brett Cannon2008-02-172-971/+2005
* Prevent a crash with nested scopes, again caused by calling Py_DECREF when th...Amaury Forgeot d'Arc2008-02-161-0/+18
* Add __all__ to logging module.Raymond Hettinger2008-02-161-0/+5
* mmap.PROT_READ does not exists on win32;Amaury Forgeot d'Arc2008-02-161-0/+2
* Re-enable tests, they were failing since gc.collect() clears the various free...Amaury Forgeot d'Arc2008-02-151-7/+17
* Configured selection highlighting colors were ignored; updating highlightingKurt B. Kaiser2008-02-153-36/+30
* ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat.Kurt B. Kaiser2008-02-152-6/+9
* Temporarily let these tests passAmaury Forgeot d'Arc2008-02-151-0/+2
* Issue #2115: __slot__ attributes setting was 10x slower.Amaury Forgeot d'Arc2008-02-151-0/+18
* Bug #2111: mmap segfaults when trying to write a block opened with PROT_READChristian Heimes2008-02-151-0/+7
* Fixed repr() and str() of complex numbers. Complex suffered from the same pro...Christian Heimes2008-02-151-0/+14
* No need to register subclass of ABCs.Raymond Hettinger2008-02-141-2/+0
* Add diagnostic message to help figure-out why SocketServer tests occasionally...Raymond Hettinger2008-02-141-1/+5
* Change simple instances (in Fraction) of self.numerator and self.denominator toJeffrey Yasskin2008-02-141-28/+28
* Performance optimizations on Fraction's constructor.Jeffrey Yasskin2008-02-142-15/+13
* Fix decimal repr which should have used single quotes like other reprs.Raymond Hettinger2008-02-142-243/+243
* Update notes on Decimal.Raymond Hettinger2008-02-141-4/+5
* Bring NEWS.txt up to date from check-in msgs.Kurt B. Kaiser2008-02-141-0/+7
* Make the test somewhat clearer (I hope).Thomas Heller2008-02-131-4/+4
* Add pickle support to ctypes types.Thomas Heller2008-02-131-0/+78