- 13 Tem, 2008 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 06 Tem, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
- 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 Tem, 2008 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 01 Tem, 2008 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 yazdı
whose write() method installs another sys.stdout. Backport of r64633
-
- 22 Haz, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 16 Haz, 2008 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 yazdı
-
- 15 Haz, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 03 Haz, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 02 Haz, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
conditions in the PyOS_vsnprintf C API function. This is a backport of r63728 and r63734 from trunk.
-
- 01 Haz, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
now closes its stdout and stderr fds as soon as it is finished with them.
-
- 31 May, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 25 May, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 23 May, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 17 May, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
constructors raised an exception. backportes from trunk c63403.
-
- 11 May, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 08 May, 2008 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
- 06 May, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
-
- 03 May, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
when open() returns EINVAL. See issue2158.
-
- 02 May, 2008 2 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
-
- 25 Nis, 2008 1 kayıt (commit)
-
-
Thomas Heller yazdı
reference to themselves. Backport from trunk.
-
- 22 Nis, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
derive the same default base class. Backport of r62463.
-
- 21 Nis, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 Nis, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Now the code is similar to the one in trunk/. The behavior was funny: >>> print (), repr(()) (), () >>> print (), repr(()) (), (...)
-
- 10 Nis, 2008 2 kayıt (commit)
-
-
Guido van Rossum yazdı
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.)
-
Gregory P. Smith yazdı
remove the now obsoleted assertion.
-
- 09 Nis, 2008 3 kayıt (commit)
-
-
Gregory P. Smith yazdı
Prevent PyString_FromStringAndSize() from passing negative sizes on to lower level memory allocation functions. Raise a SystemError and return NULL instead.
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. It tried to allocate negative or zero memory. That fails.
-
- 07 Nis, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 06 Nis, 2008 1 kayıt (commit)
-
-
Gerhard Häring yazdı
-
- 01 Nis, 2008 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I have the email trail to prove that George Neville-Neil approved this. (Backport of r62097.)
-
- 29 Mar, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 28 Mar, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Test is run with "regrtest.py -R:: test_compile" Backport of r62015
-
- 27 Mar, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
"" "" becomes """", which is invalid code. Backport of r61979.
-
- 25 Mar, 2008 2 kayıt (commit)
-
-
Mark Dickinson yazdı
is stored as a str instance rather than a unicode instance. Backported from Python 2.6 (see r61904).
-
Mark Dickinson yazdı
explicitly supplied.
-
- 24 Mar, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Corrected the raw-unicode-escape codec to use UTF-16 surrogates in this case, like the unicode-escape codec does. Backport of r61793 and r61853
-