Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typo of hexidecimal | Neal Norwitz | 2008-02-24 | 2 | -3/+3 |
| | |||||
* | Get ctypes working on the Alpha (Tru64). The problem was that there | Neal Norwitz | 2008-02-24 | 1 | -1/+1 |
| | | | | | | were two module_methods and the one used depended on the order the modules were loaded. By making the test module_methods static, it is not exported and the correct version is picked up. | ||||
* | Issue 1742669. Now %d accepts very big float numbers. | Facundo Batista | 2008-02-24 | 4 | -32/+118 |
| | | | | Thanks Gabriel Genellina. | ||||
* | Add a little info to the 3k deprecation warnings about what to use instead. | Neal Norwitz | 2008-02-24 | 1 | -4/+4 |
| | | | | Suggested by Raymond Hettinger. | ||||
* | Remove stray word | Andrew M. Kuchling | 2008-02-24 | 1 | -1/+1 |
| | |||||
* | map(None, ...) is not supported in 3.0. | Neal Norwitz | 2008-02-24 | 1 | -3/+9 |
| | |||||
* | #1627: httplib now ignores negative Content-Length headers. | Georg Brandl | 2008-02-24 | 3 | -0/+12 |
| | |||||
* | #900744: If an invalid chunked-encoding header is sent by a server, | Georg Brandl | 2008-02-24 | 3 | -1/+40 |
| | | | | | httplib will now raise IncompleteRead and close the connection instead of raising ValueError. | ||||
* | MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short. | Christian Heimes | 2008-02-23 | 1 | -0/+5 |
| | |||||
* | Specify what kind of warning -3 emits. | Georg Brandl | 2008-02-23 | 1 | -0/+2 |
| | |||||
* | Document import ./. threading issues. #1720705. | Georg Brandl | 2008-02-23 | 2 | -1/+12 |
| | |||||
* | #1506171: added operator.methodcaller(). | Georg Brandl | 2008-02-23 | 4 | -0/+169 |
| | |||||
* | #1826: allow dotted attribute paths in operator.attrgetter. | Georg Brandl | 2008-02-23 | 4 | -5/+78 |
| | |||||
* | #1825: correctly document msilib.add_data. | Georg Brandl | 2008-02-23 | 1 | -5/+11 |
| | |||||
* | Added simple test case. Thanks Benjamin Peterson. | Facundo Batista | 2008-02-23 | 1 | -0/+33 |
| | |||||
* | In test_heapq and test_bisect, test both the Python and the C implementation. | Georg Brandl | 2008-02-23 | 2 | -159/+234 |
| | | | | Originally written for GHOP by Josip Dzolonga, heavily patched by me. | ||||
* | Use os.closerange(). | Georg Brandl | 2008-02-23 | 1 | -5/+1 |
| | |||||
* | Use os.closerange() in popen2. | Georg Brandl | 2008-02-23 | 1 | -5/+1 |
| | |||||
* | Add examples to modulefinder docs. Written for GHOP by Josip Dzolonga. | Georg Brandl | 2008-02-23 | 1 | -0/+62 |
| | |||||
* | #2101: fix removeAttribute docs. | Georg Brandl | 2008-02-23 | 1 | -2/+2 |
| | |||||
* | Followup to r61011: Also avoid the reference cycle when the Thread's target | Jeffrey Yasskin | 2008-02-23 | 2 | -8/+18 |
| | | | | raises an exception. | ||||
* | Prevent classes like: | Jeffrey Yasskin | 2008-02-23 | 2 | -0/+23 |
| | | | | | | | | | | | | | | class RunSelfFunction(object): def __init__(self): self.thread = threading.Thread(target=self._run) self.thread.start() def _run(self): pass from creating a permanent cycle between the object and the thread by having the Thread delete its references to the object when it completes. As an example of the effect of this bug, paramiko.Transport inherits from Thread to avoid it. | ||||
* | #1389051, #1092502: fix excessively large allocations when using read() on a ↵ | Andrew M. Kuchling | 2008-02-23 | 1 | -1/+1 |
| | | | | socket | ||||
* | #1389051: IMAP module tries to read entire message in one chunk. Patch by ↵ | Andrew M. Kuchling | 2008-02-23 | 1 | -1/+1 |
| | | | | Fredrik Lundh. | ||||
* | Documentation coverage builder, part 1. | Georg Brandl | 2008-02-23 | 3 | -3/+47 |
| | |||||
* | Issue #2051 and patch from Alexander Belopolsky: | Christian Heimes | 2008-02-23 | 3 | -15/+19 |
| | | | | Permission for pyc and pyo files are inherited from the py file. | ||||
* | Patch #1957: syslogmodule: Release GIL when calling syslog(3) | Christian Heimes | 2008-02-23 | 2 | -0/+4 |
| | |||||
* | 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. |