- 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 2 commits
-
-
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.)
-
Gregory P. Smith authored
remove the now obsoleted assertion.
-
- 09 Apr, 2008 3 commits
-
-
Gregory P. Smith authored
Prevent PyString_FromStringAndSize() from passing negative sizes on to lower level memory allocation functions. Raise a SystemError and return NULL instead.
-
Gregory P. Smith authored
-
Gregory P. Smith authored
Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. It tried to allocate negative or zero memory. That fails.
-
- 07 Apr, 2008 1 commit
-
-
Georg Brandl authored
-
- 06 Apr, 2008 1 commit
-
-
Gerhard Häring authored
-
- 01 Apr, 2008 1 commit
-
-
Guido van Rossum authored
I have the email trail to prove that George Neville-Neil approved this. (Backport of r62097.)
-
- 29 Mar, 2008 1 commit
-
-
Georg Brandl authored
-
- 28 Mar, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
Test is run with "regrtest.py -R:: test_compile" Backport of r62015
-
- 27 Mar, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
"" "" becomes """", which is invalid code. Backport of r61979.
-
- 25 Mar, 2008 2 commits
-
-
Mark Dickinson authored
is stored as a str instance rather than a unicode instance. Backported from Python 2.6 (see r61904).
-
Mark Dickinson authored
explicitly supplied.
-
- 24 Mar, 2008 1 commit
-
-
Amaury Forgeot d'Arc authored
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
-
- 21 Mar, 2008 1 commit
-
-
Georg Brandl authored
advertised in the docs. (backport from r61712)
-
- 20 Mar, 2008 1 commit
-
-
Sean Reifscheider authored
and **kwargs expressions could give bogus error messages.
-
- 18 Mar, 2008 5 commits
-
-
Gregory P. Smith authored
-
Gregory P. Smith authored
Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as uid and gid input to accept values >=2**31 as valid while still accepting negative numbers to pass -1 to chown for "no change". Fixes issue1747858.
-
Trent Nelson authored
The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: a) no sound card entirely b) legacy beep driver has been disabled c) the legacy beep driver has been uninstalled Sometimes RuntimeErrors are raised, sometimes they're not. If _have_soundcard() returns False, don't expect winsound.Beep() to raise a RuntimeError, as this clearly isn't the case, as demonstrated by the various Win32 XP buildbots.
-
Neal Norwitz authored
Issue 2321: reduce memory usage (increase the memory that is returned to the system) by using pymalloc for the data of unicode objects.
-
Trent Nelson authored
-
- 16 Mar, 2008 1 commit
-
-
Vinay Sajip authored
-
- 11 Mar, 2008 1 commit
-
-
Guido van Rossum authored
(Exploit at request.)
-
- 07 Mar, 2008 2 commits
-
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-