- 19 Aug, 2008 2 commits
-
-
Guido van Rossum authored
Also fixes rgbimg module (just before it is removed from 2.6).
-
Thomas Heller authored
pythonapi calling convention so that the GIL is held and error return values are checked.
-
- 18 Aug, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
Be less strict when parsing these version numbers, they don't necessarily follow the python numbering scheme. Backport of r65834
-
- 17 Aug, 2008 4 commits
-
-
Gregory P. Smith authored
Fixes Issue #3309: Fix bz2.BZFile iterator to release its internal lock properly when raising an exception due to the bz2file being closed. Prevents a deadlock.
-
Gregory P. Smith authored
Fixes Issue #874900: after an os.fork() call the threading module state is cleaned up in the child process to prevent deadlock and report proper thread counts if the new process uses the threading module.
-
Hirokazu Yamamoto authored
-
Hirokazu Yamamoto authored
os.rename() fails unicode conversion on 2nd parameter. (windows only)
-
- 14 Aug, 2008 1 commit
-
-
Hirokazu Yamamoto authored
- PC/VC6/_bsddb.dsp: removed '/nodefaultlib:"msvcrt"' to fix linker error. - PC/VC6/_msi.dsp: added new module support. - PC/VC6/_sqlite3.dsp: /D "MODULE_NAME=\"sqlite3\"" caused extra leading space like #define MODULE_NAME " sqlite3" so uses /D MODULE_NAME=\"sqlite3\" instead. - PC/VC6/python.dsp: changed stack size to 2MB to avoid stack overflow on some tests.
-
- 12 Aug, 2008 3 commits
-
-
Georg Brandl authored
(backport from r65609)
-
Georg Brandl authored
-
Georg Brandl authored
(backport from r65644)
-
- 11 Aug, 2008 1 commit
-
-
Georg Brandl authored
object was stored in the freelist. (backport from r65637.)
-
- 10 Aug, 2008 1 commit
-
-
Robert Schuppenies authored
menu entries were not deleted. Backport from trunk r65622.
-
- 04 Aug, 2008 4 commits
-
-
Gregory P. Smith authored
Issue #2113: Fix error in subprocess.Popen if the select system call is interrupted by a signal.
-
Gregory P. Smith authored
Issue #1471: Arguments to fcntl.ioctl are no longer broken on 64-bit OpenBSD and similar platforms due to sign extension.
-
Gregory P. Smith authored
Issue #3120: On 64-bit Windows the subprocess module was truncating handles.
-
Gregory P. Smith authored
- Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword argument in python 2.5, this broke code that subclassed Popen to include its own poll method. Fixed my moving _deadstate to an _internal_poll method.
-
- 02 Aug, 2008 1 commit
-
-
Martin v. Löwis authored
Tcl command objects. Backport of r65399.
-
- 31 Jul, 2008 1 commit
-
-
Neal Norwitz authored
-
- 28 Jul, 2008 1 commit
-
-
Neal Norwitz authored
Issue #2620: Overflow checking when allocating or reallocating memory was not always being done properly in some python types and extension modules. PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have all been updated to perform better checks and places in the code that would previously leak memory on the error path when such an allocation failed have been fixed.
-
- 25 Jul, 2008 1 commit
-
-
Antoine Pitrou authored
-
- 16 Jul, 2008 2 commits
-
-
Mark Dickinson authored
This is a backport of r65005.
-
Georg Brandl authored
-
- 13 Jul, 2008 1 commit
-
-
Brett Cannon authored
-
- 06 Jul, 2008 1 commit
-
-
Gregory P. Smith authored
- Issue #2632: Prevent socket.read(bignumber) from over allocating memory in the common case when the data is returned from the underlying socket in increments much smaller than bignumber.
-
- 02 Jul, 2008 1 commit
-
-
Brett Cannon authored
-
- 01 Jul, 2008 2 commits
-
-
Amaury Forgeot d'Arc authored
When a thread touches such an object for the first time, a new thread-local __dict__ is created, and the __init__ method is run. But a thread switch can occur here; if the other thread touches the same object, it installs another __dict__; when the first thread resumes, it updates the dictionary of the second... This is the deep cause of the failures in test_multiprocessing involving "managers" objects. Backport of r64601.
-
Amaury Forgeot d'Arc authored
whose write() method installs another sys.stdout. Backport of r64633
-
- 22 Jun, 2008 1 commit
-
-
Georg Brandl authored
-
- 16 Jun, 2008 2 commits
-
-
Amaury Forgeot d'Arc authored
seen after a "import multiprocessing.reduction" An instance of a weakref subclass can have attributes. If such a weakref holds the only strong reference to the object, deleting the weakref will delete the object. In this case, the callback must not be called, because the ref object is being deleted! Backport of r34309
-
Raymond Hettinger authored
-
- 15 Jun, 2008 1 commit
-
-
Georg Brandl authored
-
- 03 Jun, 2008 1 commit
-
-
Georg Brandl authored
-
- 02 Jun, 2008 1 commit
-
-
Gregory P. Smith authored
conditions in the PyOS_vsnprintf C API function. This is a backport of r63728 and r63734 from trunk.
-
- 01 Jun, 2008 1 commit
-
-
Gregory P. Smith authored
now closes its stdout and stderr fds as soon as it is finished with them.
-
- 31 May, 2008 1 commit
-
-
Georg Brandl authored
-
- 25 May, 2008 1 commit
-
-
Martin v. Löwis authored
-
- 23 May, 2008 1 commit
-
-
Martin v. Löwis authored
-
- 17 May, 2008 1 commit
-
-
Gregory P. Smith authored
constructors raised an exception. backportes from trunk c63403.
-
- 11 May, 2008 1 commit
-
-
Georg Brandl authored
-