summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-23203-243/+77
* #1433694: minidom's .normalize() failed to set .nextSibling for last element.Andrew M. Kuchling2008-02-233-0/+11
* #835521: Add index entries for various pickle-protocol methods and attributesAndrew M. Kuchling2008-02-231-0/+13
* #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.Andrew M. Kuchling2008-02-234-85/+74
* Removed duplicate Py_CHARMASK define. It's already defined in Python.h.Eric Smith2008-02-231-8/+0
* #1119331: ncurses will just call exit() if the terminal name isn't found.Andrew M. Kuchling2008-02-231-0/+4
* #2161: Fix opcode name.Georg Brandl2008-02-231-1/+1
* #2072: correct documentation for .rpc_pathsAndrew M. Kuchling2008-02-231-2/+8
* More difflib examples. Written for GHOP by Josip Dzolonga.Georg Brandl2008-02-231-2/+112
* #2067: file.__exit__() now calls subclasses' close() method.Georg Brandl2008-02-233-4/+22
* Issue 1089358. Adds the siginterrupt() function, that is just aFacundo Batista2008-02-234-2/+95
* #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-233-2/+17
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-2315-1380/+1506
* Issue 1781. Now ConfigParser.add_section does not let you add aFacundo Batista2008-02-234-3/+19
* 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-233-1/+21
* Add recipe using itertools.product().Raymond Hettinger2008-02-231-0/+6
* Add more commentsRaymond Hettinger2008-02-231-4/+4
* Added future_builtins, which contains PEP 3127 compatible versions of hex() a...Eric Smith2008-02-236-0/+113
* Improve the implementation of itertools.product()Raymond Hettinger2008-02-232-12/+46
* Document itertools.product().Raymond Hettinger2008-02-222-0/+26
* Tests for bin() builtin. These need to get merged into py3k, which has no te...Eric Smith2008-02-221-0/+9
* Added bin() builtin. I'm going to check in the tests in a seperate checkin, ...Eric Smith2008-02-221-0/+13
* Another fix.Georg Brandl2008-02-221-1/+1
* Don't reference pyshell.Georg Brandl2008-02-221-1/+1
* A lot more typo fixes by Ori Avtalion.Georg Brandl2008-02-2225-35/+35
* 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-222-1/+240
* Part of #2154: minimal syntax fixes in doc example snippets.Georg Brandl2008-02-212-6/+6
* #2079: typo in userdict docs.Georg Brandl2008-02-211-1/+1
* Moved test_format into the correct TestCase.Eric Smith2008-02-211-39/+39
* Fix a few typos and layout glitches (more work is needed).Guido van Rossum2008-02-212-2141/+2144
* Update more instances of has_key().Raymond Hettinger2008-02-212-5/+5
* Replace 'has_key()' with 'in'.Thomas Heller2008-02-215-13/+11
* configure.ac: Remove the configure check for _Bool, it is already done in theThomas Heller2008-02-213-3162/+3023
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-2117-39/+44
* Remove news about float repr() -- issue 1580 is still in limbo.Guido van Rossum2008-02-211-4/+0
* Close manifest file.Andrew M. Kuchling2008-02-211-0/+1
* Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma...Eric Smith2008-02-201-40/+15
* Trim leading zeros from a floating point exponent, per C99. See issue 1600. ...Eric Smith2008-02-203-34/+165
* Fixes contributed by Ori Avtalion.Georg Brandl2008-02-201-3/+6
* Added PEP 3101.Eric Smith2008-02-191-0/+6
* Added dependencies for stringobject.o. This should fix failing tests in test...Eric Smith2008-02-191-0/+8
* Added code to correct combining str and unicode in ''.format(). Added test c...Eric Smith2008-02-182-0/+25
* Perform correct handling of stack overflow for windows: Catch the correct exc...Kristján Valur Jónsson2008-02-181-2/+8
* 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-183-1/+45
* Issue #1916. Added isgenerator() and isgeneratorfunction() toFacundo Batista2008-02-184-15/+104
* #2133: fix HTML color spec.Georg Brandl2008-02-171-1/+1