COMMITS
/ Python/ceval.c January 22, 2012
B
use the static identifier api for looking up special methods
Benjamin Peterson committed
January 13, 2012
A
Fix compilation with C89 compilers (Windows...)
Amaury Forgeot d'Arc committed
B
NULL and no exception set from tp_iternext means StopIteration
Benjamin Peterson committed
N
Implement PEP 380 - 'yield from' (closes #11682)
Nick Coghlan committed
November 25, 2011
A
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou committed
October 14, 2011
M
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
Martin v. Löwis committed
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
October 9, 2011
M
Add API for static strings, primarily good for identifiers.
Martin v. Löwis committed
October 2, 2011
V
ceval.c: restore str+=str optimization
Victor Stinner committed
October 1, 2011
B
remove "fast-path" for (i)adding strings
Benjamin Peterson committed
September 30, 2011
V
Remove commented code: str+=str is no more super-optimized
Victor Stinner committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
July 23, 2011
C
Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls().
Charles-François Natali committed
July 18, 2011
B
excise the remains of STOP_CODE, which hasn't done anything useful for years
Benjamin Peterson committed
July 15, 2011
B
merge 3.2 (#11627)
Benjamin Peterson committed
B
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
Benjamin Peterson committed
July 3, 2011
B
no one passes NULL here (or should anyway)
Benjamin Peterson committed
B
convert generator exc state functions into static functions
Benjamin Peterson committed
B
never retain a generator's caller's exception state on the generator after a yield/return
Benjamin Peterson committed
B
merge 3.2 (#12475)
Benjamin Peterson committed
B
restore a generator's caller's exception state both on yield and (last) return
Benjamin Peterson committed
June 26, 2011
B
map cells to arg slots at code creation time (closes #12399)
Benjamin Peterson committed
June 24, 2011
B
give the names of missing positional or keyword-only arguments (closes #12356)
Benjamin Peterson committed
June 6, 2011
B
greatly improve argument parsing error messages (closes #12265)
Benjamin Peterson committed
May 4, 2011
A
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou committed
A
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou committed
March 22, 2011
V
Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s
Victor Stinner committed
March 16, 2011
E
#11565: Merge with 3.1.
Ezio Melotti committed
E
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti committed
E
#11565: Merge with 3.2.
Ezio Melotti committed
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
February 21, 2011
V
Remove filename variable from ceval.c
Victor Stinner committed
January 6, 2011
D
Merged revisions 87796 via svnmerge from
David Malcolm committed
D
Issue #10655: Fix the build on PowerPC on Linux with GCC when building with
David Malcolm committed
December 3, 2010
M
Merge branches/pep-0384.
Martin v. Löwis committed
November 30, 2010
G
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl committed
October 17, 2010
B
make hashes always the size of pointers; introduce Py_hash_t #9778
Benjamin Peterson committed
October 13, 2010
V
ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)
Victor Stinner committed
September 25, 2010
B
revert r85003, poorly considered; breaks tests
Benjamin Peterson committed
B
don't count keyword arguments as positional #9943
Benjamin Peterson committed
September 13, 2010
A
Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly
Antoine Pitrou committed
September 10, 2010
B
use Py_REFCNT
Benjamin Peterson committed
B
remove gil_drop_request in --without-threads
Benjamin Peterson committed
B
use DISPATCH() instead of continue
Benjamin Peterson committed
A
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc committed
September 4, 2010
A
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou committed
August 17, 2010
V
Issue #9425: save/restore exception on filename encoding
Victor Stinner committed
August 13, 2010
A
Issue #9203: Computed gotos are now enabled by default on supported
Antoine Pitrou committed