- 03 Jan, 2008 3 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
Regular Expression inline flags not handled correctly for some unicode characters.
-
Guido van Rossum authored
reveals that a lot more are missing. If you checked anything into the 2.5.2 branch without updating Misc/NEWS, please correct your mistake!
-
- 02 Jan, 2008 1 commit
-
-
Guido van Rossum authored
-
- 29 Dec, 2007 1 commit
-
-
Martin v. Löwis authored
-
- 24 Dec, 2007 1 commit
-
-
Brett Cannon authored
-
- 19 Dec, 2007 1 commit
-
-
Thomas Heller authored
ctypes 1.0.3 will be also be released).
-
- 18 Dec, 2007 4 commits
-
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Thomas Heller authored
-
- 15 Dec, 2007 1 commit
-
-
Georg Brandl authored
-
- 14 Dec, 2007 1 commit
-
-
Thomas Heller authored
-
- 13 Dec, 2007 2 commits
-
-
Guido van Rossum authored
GCC versions may optimize away overflow buffer overflow checks without this option! Thanks to Ismail Donmez. No thanks to the GCC devs.
-
Alexandre Vassalotti authored
Fix issue #1313119.
-
- 10 Dec, 2007 1 commit
-
-
Guido van Rossum authored
-
- 05 Dec, 2007 2 commits
-
-
Ronald Oussoren authored
This patch doesn't remove the wrappers for OSADebug* API's but only defines them when configure detects that the API's are present in the system's header files.
-
Christian Heimes authored
merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError
-
- 03 Dec, 2007 1 commit
-
-
Martin v. Löwis authored
-
- 01 Dec, 2007 1 commit
-
-
Lars Gustäbel authored
the start. (backport from r59260)
-
- 30 Nov, 2007 1 commit
-
-
Amaury Forgeot d'Arc authored
PyArgs_ParseTuple t# and w# formats truncated the lengths to 32bit.
-
- 29 Nov, 2007 2 commits
-
-
Georg Brandl authored
(backport from rev. 59224)
-
Guido van Rossum authored
-
- 25 Nov, 2007 1 commit
-
-
Gerhard Häring authored
statement recompilation with no bound parameters lead to a segfault - Backported a fix necessary because of an SQLite API change in version 3.5. This prevents segfaults when executing empty queries, like our test suite does.
-
- 24 Nov, 2007 4 commits
-
-
Skip Montanaro authored
-
Amaury Forgeot d'Arc authored
attribute of an empty cell object. Now a ValueError is raised. Backport of r59170.
-
Skip Montanaro authored
-
Skip Montanaro authored
-
- 23 Nov, 2007 3 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
head.
-
Brett Cannon authored
-
- 22 Nov, 2007 2 commits
-
-
Ronald Oussoren authored
A test that should test for osx >= 10.4.0 actually tested for os versions <= 10.4. The end result is that a universal ("fat") build will claim to be a single-architecture on on OSX 10.5 (Leopard). This patch fixes this issue.
-
Martin v. Löwis authored
on 64-bit Windows systems.
-
- 21 Nov, 2007 2 commits
-
-
Brett Cannon authored
-
Christian Heimes authored
-
- 19 Nov, 2007 3 commits
-
-
Brett Cannon authored
-
Walter Dörwald authored
Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) calling codecs.utf_8_decode() with final==True, which falled with incomplete byte sequences. Fix and test by James G. Sack.
-
Walter Dörwald authored
-
- 15 Nov, 2007 1 commit
-
-
Guido van Rossum authored
-
- 13 Nov, 2007 1 commit
-
-
Amaury Forgeot d'Arc authored
When an unfinished generator-iterator is garbage collected, PyEval_EvalFrameEx is called with a GeneratorExit exception set. This leads to funny results if the sys.settrace function itself makes use of generators. A visible effect is that the settrace function is reset to None. Another is that the eventual "finally" block of the generator is not called. It is necessary to save/restore the exception around the call to the trace function. This happens a lot with py3k: isinstance() of an ABCMeta instance runs def __instancecheck__(cls, instance): """Override for isinstance(instance, cls).""" return any(cls.__subclasscheck__(c) for c in {instance.__class__, type(instance)}) which lets an opened generator expression each time it returns True. And the problem can be reproduced in 2.5 with pure python code.
-