- 12 Aug, 2008 1 commit
-
-
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
-
- 08 May, 2008 1 commit
-
-
Ronald Oussoren authored
-
- 06 May, 2008 1 commit
-
-
Gregory P. Smith authored
-
- 03 May, 2008 1 commit
-
-
Gregory P. Smith authored
when open() returns EINVAL. See issue2158.
-
- 02 May, 2008 2 commits
-
-
Ronald Oussoren authored
-
Ronald Oussoren authored
-
- 25 Apr, 2008 1 commit
-
-
Thomas Heller authored
reference to themselves. Backport from trunk.
-
- 22 Apr, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
derive the same default base class. Backport of r62463.
-
- 21 Apr, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
It seems to work, but will fail at the first flush. This causes IDLE to silently crash when too many warnings are printed. Backport of r62448.
-
- 11 Apr, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
Now the code is similar to the one in trunk/. The behavior was funny: >>> print (), repr(()) (), () >>> print (), repr(()) (), (...)
-
- 10 Apr, 2008 1 commit
-
-
Guido van Rossum authored
having a self-referential tuple, which is possible from C code. Nor did object's tp_str consider that a type's tp_str could do something that could lead to an inifinite recursion. Py_ReprEnter() and Py_EnterRecursiveCall(), respectively, fixed the issues. (Backport of r58288 from trunk to 2.5.)
-