summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,Victor Stinner2014-12-121-3/+5
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-211-12/+0
* Issue #22453: Fexed reference leaks when format error messages in ceval.c.Serhiy Storchaka2014-11-181-4/+16
* restore runtime exec test (#21591)Benjamin Peterson2014-08-101-0/+9
* Issue #21591: Handle exec backwards compatibility in the AST builder.Dirkjan Ochtman2014-07-291-9/+0
* check if the thread is finalizing after retaking the GILBenjamin Peterson2014-06-171-0/+7
* avoid crashes and lockups from daemon threads during interpreter shutdown (#1...Benjamin Peterson2014-06-171-0/+6
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* port 8d05f697acd4 (#11627)Benjamin Peterson2011-07-151-2/+10
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* Merged revisions 87796 via svnmerge fromDavid Malcolm2011-01-061-4/+5
* Rolled back revisions 85003 via svnmerge fromBenjamin Peterson2010-09-251-1/+1
* Merged revisions 85003 via svnmerge fromBenjamin Peterson2010-09-251-1/+1
* Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.Stefan Krah2010-06-231-57/+57
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-3964/+3964
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
* Partially revert the over-reaching r80813.Brett Cannon2010-05-051-0/+1
* Remove three unneeded variable assignments.Brett Cannon2010-05-051-1/+0
* Issue #8276: PyEval_CallObject() is now only available in macro form. TheAntoine Pitrou2010-04-011-12/+1
* take into account keyword arguments when passing too many argsBenjamin Peterson2010-03-211-1/+1
* improve error message from passing inadequate number of keyword arguments #6474Benjamin Peterson2010-03-211-5/+7
* co_varnames is certainly a tuple, so let's not waste time finding outBenjamin Peterson2010-03-211-1/+1
* remove pointless conditionBenjamin Peterson2010-03-211-15/+13
* flatten conditionBenjamin Peterson2010-03-211-8/+6
* more specific exception for wrong kind of raise #8082Benjamin Peterson2010-03-071-2/+3
* remove pointless error checkingBenjamin Peterson2010-02-061-3/+0
* normalize exceptions passed to the __exit__ method #7853Benjamin Peterson2010-02-051-5/+9
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-0/+26
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-0/+19
* Issue #7406: Fix some occurrences of potential signed overflow in intMark Dickinson2009-12-021-2/+6
* Issue #6603: Fix --with-tsc build failures on x86-64 that resultedMark Dickinson2009-10-311-1/+19
* small optimization: avoid popping the current block until we have toBenjamin Peterson2009-07-011-5/+5
* use stack macrosBenjamin Peterson2009-06-281-2/+2
* add two generic macros for peeking and setting in the stackBenjamin Peterson2009-06-281-0/+2
* Issue #5330: C functions called with keyword arguments were not reported byAntoine Pitrou2009-05-301-2/+16
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-0/+46
* Issue #6042:Jeffrey Yasskin2009-05-231-14/+11
* Issue 5954, PyFrame_GetLineNumber:Jeffrey Yasskin2009-05-081-1/+1
* Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} withJeffrey Yasskin2009-02-281-17/+67
* Issue 5176: special-case string formatting in BINARY_MODULO implementation. T...Collin Winter2009-02-201-1/+4
* Silence 'arg may be used uninitialized in this function' warning from gcc.Mark Dickinson2009-02-081-1/+1
* fix building the core with --disable-unicodeBenjamin Peterson2009-01-251-4/+15
* allow unicode keyword arguments for the ** syntax #4978Benjamin Peterson2009-01-201-12/+33
* Issue 4293: Make Py_AddPendingCall() thread safeKristján Valur Jónsson2009-01-091-22/+146
* Issue #2183: Simplify and optimize bytecode for list comprehensions.Antoine Pitrou2008-12-171-2/+1
* #4559: When a context manager's __exit__() method returns an object whoseAmaury Forgeot d'Arc2008-12-101-6/+13
* Issue 4597: Fix several cases in EvalFrameEx where an exception could beJeffrey Yasskin2008-12-081-3/+14
* Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by cachingJeffrey Yasskin2008-12-031-1/+10
* Raymond's patch for #1819: speedup function calls with named parametersAntoine Pitrou2008-07-251-22/+30
* Apply patch for 874900: threading module can deadlock after forkJesse Noller2008-07-161-0/+20