Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 203 | -243/+77 |
| | |||||
* | #1433694: minidom's .normalize() failed to set .nextSibling for last element. | Andrew M. Kuchling | 2008-02-23 | 3 | -0/+11 |
| | | | | Fix by Malte Helmert | ||||
* | #835521: Add index entries for various pickle-protocol methods and attributes | Andrew M. Kuchling | 2008-02-23 | 1 | -0/+13 |
| | |||||
* | #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. | Andrew M. Kuchling | 2008-02-23 | 4 | -85/+74 |
| | | | | | | Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. | ||||
* | Removed duplicate Py_CHARMASK define. It's already defined in Python.h. | Eric Smith | 2008-02-23 | 1 | -8/+0 |
| | |||||
* | #1119331: ncurses will just call exit() if the terminal name isn't found. | Andrew M. Kuchling | 2008-02-23 | 1 | -0/+4 |
| | | | | Call setupterm() first so that we get a Python exception instead of just existing. | ||||
* | #2161: Fix opcode name. | Georg Brandl | 2008-02-23 | 1 | -1/+1 |
| | |||||
* | #2072: correct documentation for .rpc_paths | Andrew M. Kuchling | 2008-02-23 | 1 | -2/+8 |
| | |||||
* | More difflib examples. Written for GHOP by Josip Dzolonga. | Georg Brandl | 2008-02-23 | 1 | -2/+112 |
| | |||||
* | #2067: file.__exit__() now calls subclasses' close() method. | Georg Brandl | 2008-02-23 | 3 | -4/+22 |
| | |||||
* | Issue 1089358. Adds the siginterrupt() function, that is just a | Facundo Batista | 2008-02-23 | 4 | -2/+95 |
| | | | | | | wrapper around the system call with the same name. Also added test cases, doc changes and NEWS entry. Thanks Jason and Ralf Schmitt. | ||||
* | #2165: fix test_logging failure on some machines. | Georg Brandl | 2008-02-23 | 1 | -23/+13 |
| | |||||
* | #1492: allow overriding BaseHTTPServer's content type for error messages. | Georg Brandl | 2008-02-23 | 3 | -2/+17 |
| | |||||
* | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 15 | -1380/+1506 |
| | | | | with some help from Georg | ||||
* | Issue 1781. Now ConfigParser.add_section does not let you add a | Facundo Batista | 2008-02-23 | 4 | -3/+19 |
| | | | | | DEFAULT section any more, because it duplicated sections with the rest of the machinery. Thanks Tim Lesher and Manuel Kaufmann. | ||||
* | Issue 1776581. Minor corrections to smtplib, and two small tests. | Facundo Batista | 2008-02-23 | 2 | -4/+5 |
| | | | | Thanks Alan McIntyre. | ||||
* | Issue 1881. Increased the stack limit from 500 to 1500. Also added | Facundo Batista | 2008-02-23 | 3 | -1/+21 |
| | | | | | | a test for this (and because of this test you'll see in stderr a message that parser.c sends before raising MemoryError). Thanks Ralf Schmitt. | ||||
* | Add recipe using itertools.product(). | Raymond Hettinger | 2008-02-23 | 1 | -0/+6 |
| | |||||
* | Add more comments | Raymond Hettinger | 2008-02-23 | 1 | -4/+4 |
| | |||||
* | Added future_builtins, which contains PEP 3127 compatible versions of hex() ↵ | Eric Smith | 2008-02-23 | 6 | -0/+113 |
| | | | | and oct(). | ||||
* | Improve the implementation of itertools.product() | Raymond Hettinger | 2008-02-23 | 2 | -12/+46 |
| | | | | | | | | * Fix-up issues pointed-out by Neal Norwitz. * Add extensive comments. * The lz->result variable is now a tuple instead of a list. * Use fast macro getitem/setitem calls so most code is in-line. * Re-use the result tuple if available (modify in-place instead of copy). | ||||
* | Document itertools.product(). | Raymond Hettinger | 2008-02-22 | 2 | -0/+26 |
| | |||||
* | Tests for bin() builtin. These need to get merged into py3k, which has no ↵ | Eric Smith | 2008-02-22 | 1 | -0/+9 |
| | | | | tests for bin. | ||||
* | Added bin() builtin. I'm going to check in the tests in a seperate checkin, ↵ | Eric Smith | 2008-02-22 | 1 | -0/+13 |
| | | | | because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there. | ||||
* | Another fix. | Georg Brandl | 2008-02-22 | 1 | -1/+1 |
| | |||||
* | Don't reference pyshell. | Georg Brandl | 2008-02-22 | 1 | -1/+1 |
| | |||||
* | A lot more typo fixes by Ori Avtalion. | Georg Brandl | 2008-02-22 | 25 | -35/+35 |
| | |||||
* | Try to make command line error messages from runpy easier to understand (and ↵ | Nick Coghlan | 2008-02-22 | 1 | -1/+17 |
| | | | | suppress traceback cruft from the implicitly invoked runpy machinery) | ||||
* | First draft for itertools.product(). Docs and other updates forthcoming. | Raymond Hettinger | 2008-02-22 | 2 | -1/+240 |
| | |||||
* | Part of #2154: minimal syntax fixes in doc example snippets. | Georg Brandl | 2008-02-21 | 2 | -6/+6 |
| | |||||
* | #2079: typo in userdict docs. | Georg Brandl | 2008-02-21 | 1 | -1/+1 |
| | |||||
* | Moved test_format into the correct TestCase. | Eric Smith | 2008-02-21 | 1 | -39/+39 |
| | |||||
* | Fix a few typos and layout glitches (more work is needed). | Guido van Rossum | 2008-02-21 | 2 | -2141/+2144 |
| | | | | Move 2.5 news to Misc/HISTORY. | ||||
* | Update more instances of has_key(). | Raymond Hettinger | 2008-02-21 | 2 | -5/+5 |
| | |||||
* | Replace 'has_key()' with 'in'. | Thomas Heller | 2008-02-21 | 5 | -13/+11 |
| | | | | Replace 'raise Error, stuff' with 'raise Error(stuff)'. | ||||
* | configure.ac: Remove the configure check for _Bool, it is already done in the | Thomas Heller | 2008-02-21 | 3 | -3162/+3023 |
| | | | | | top-level Python configure script. configure, fficonfig.h.in: regenerated. | ||||
* | Removed uses of dict.has_key() from distutils, and uses of | Guido van Rossum | 2008-02-21 | 17 | -39/+44 |
| | | | | | | callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib. | ||||
* | Remove news about float repr() -- issue 1580 is still in limbo. | Guido van Rossum | 2008-02-21 | 1 | -4/+0 |
| | |||||
* | Close manifest file. | Andrew M. Kuchling | 2008-02-21 | 1 | -0/+1 |
| | | | | This change doesn't make any difference to CPython, but is a necessary fix for Jython. | ||||
* | Now that PyOS_ascii_formatd supports the 'n' format, simplify the float ↵ | Eric Smith | 2008-02-20 | 1 | -40/+15 |
| | | | | formatting code to just call it. | ||||
* | Trim leading zeros from a floating point exponent, per C99. See issue 1600. ↵ | Eric Smith | 2008-02-20 | 3 | -34/+165 |
| | | | | As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). | ||||
* | Fixes contributed by Ori Avtalion. | Georg Brandl | 2008-02-20 | 1 | -3/+6 |
| | |||||
* | Added PEP 3101. | Eric Smith | 2008-02-19 | 1 | -0/+6 |
| | |||||
* | Added dependencies for stringobject.o. This should fix failing tests in ↵ | Eric Smith | 2008-02-19 | 1 | -0/+8 |
| | | | | test_unicode.py. | ||||
* | Added code to correct combining str and unicode in ''.format(). Added test ↵ | Eric Smith | 2008-02-18 | 2 | -0/+25 |
| | | | | case. | ||||
* | Perform correct handling of stack overflow for windows: Catch the correct ↵ | Kristján Valur Jónsson | 2008-02-18 | 1 | -2/+8 |
| | | | | exception code and reset the overflow condition when handled. | ||||
* | Temporarily removed float tests. See issue 1600. | Eric Smith | 2008-02-18 | 1 | -6/+7 |
| | |||||
* | Issue 1224. Now we support again the double slash in the URL. | Facundo Batista | 2008-02-18 | 3 | -1/+45 |
| | | | | Thanks Anthony Lenton. | ||||
* | Issue #1916. Added isgenerator() and isgeneratorfunction() to | Facundo Batista | 2008-02-18 | 4 | -15/+104 |
| | | | | | inspect.py. Thanks Javi Mansilla for patch review and corrections. | ||||
* | #2133: fix HTML color spec. | Georg Brandl | 2008-02-17 | 1 | -1/+1 |
| |