summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo of hexidecimalNeal Norwitz2008-02-242-3/+3
|
* Get ctypes working on the Alpha (Tru64). The problem was that thereNeal Norwitz2008-02-241-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 Batista2008-02-244-32/+118
| | | | Thanks Gabriel Genellina.
* Add a little info to the 3k deprecation warnings about what to use instead.Neal Norwitz2008-02-241-4/+4
| | | | Suggested by Raymond Hettinger.
* Remove stray wordAndrew M. Kuchling2008-02-241-1/+1
|
* map(None, ...) is not supported in 3.0.Neal Norwitz2008-02-241-3/+9
|
* #1627: httplib now ignores negative Content-Length headers.Georg Brandl2008-02-243-0/+12
|
* #900744: If an invalid chunked-encoding header is sent by a server,Georg Brandl2008-02-243-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 Heimes2008-02-231-0/+5
|
* Specify what kind of warning -3 emits.Georg Brandl2008-02-231-0/+2
|
* Document import ./. threading issues. #1720705.Georg Brandl2008-02-232-1/+12
|
* #1506171: added operator.methodcaller().Georg Brandl2008-02-234-0/+169
|
* #1826: allow dotted attribute paths in operator.attrgetter.Georg Brandl2008-02-234-5/+78
|
* #1825: correctly document msilib.add_data.Georg Brandl2008-02-231-5/+11
|
* Added simple test case. Thanks Benjamin Peterson.Facundo Batista2008-02-231-0/+33
|
* In test_heapq and test_bisect, test both the Python and the C implementation.Georg Brandl2008-02-232-159/+234
| | | | Originally written for GHOP by Josip Dzolonga, heavily patched by me.
* Use os.closerange().Georg Brandl2008-02-231-5/+1
|
* Use os.closerange() in popen2.Georg Brandl2008-02-231-5/+1
|
* Add examples to modulefinder docs. Written for GHOP by Josip Dzolonga.Georg Brandl2008-02-231-0/+62
|
* #2101: fix removeAttribute docs.Georg Brandl2008-02-231-2/+2
|
* Followup to r61011: Also avoid the reference cycle when the Thread's targetJeffrey Yasskin2008-02-232-8/+18
| | | | raises an exception.
* Prevent classes like:Jeffrey Yasskin2008-02-232-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. Kuchling2008-02-231-1/+1
| | | | socket
* #1389051: IMAP module tries to read entire message in one chunk. Patch by ↵Andrew M. Kuchling2008-02-231-1/+1
| | | | Fredrik Lundh.
* Documentation coverage builder, part 1.Georg Brandl2008-02-233-3/+47
|
* Issue #2051 and patch from Alexander Belopolsky:Christian Heimes2008-02-233-15/+19
| | | | Permission for pyc and pyo files are inherited from the py file.
* Patch #1957: syslogmodule: Release GIL when calling syslog(3)Christian Heimes2008-02-232-0/+4
|
* 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
| | | | Fix by Malte Helmert
* #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
| | | | | | 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 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
| | | | Call setupterm() first so that we get a Python exception instead of just existing.
* #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
| | | | | | 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 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
| | | | with some help from Georg
* Issue 1781. Now ConfigParser.add_section does not let you add aFacundo Batista2008-02-234-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 Batista2008-02-232-4/+5
| | | | Thanks Alan McIntyre.
* Issue 1881. Increased the stack limit from 500 to 1500. Also addedFacundo Batista2008-02-233-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 Hettinger2008-02-231-0/+6
|
* Add more commentsRaymond Hettinger2008-02-231-4/+4
|
* Added future_builtins, which contains PEP 3127 compatible versions of hex() ↵Eric Smith2008-02-236-0/+113
| | | | and oct().
* Improve the implementation of itertools.product()Raymond Hettinger2008-02-232-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 Hettinger2008-02-222-0/+26
|
* Tests for bin() builtin. These need to get merged into py3k, which has no ↵Eric Smith2008-02-221-0/+9
| | | | tests for bin.