summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Update comment on prediction macros.Raymond Hettinger2008-07-051-11/+13
* Add a comment about incref'ing w.Georg Brandl2008-07-011-0/+2
* #3242: fix a crash in "print", if sys.stdout is set to a custom object,Amaury Forgeot d'Arc2008-07-011-0/+2
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-47/+47
* Renamed PyString to PyBytesChristian Heimes2008-05-261-47/+47
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-8/+8
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-2/+2
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1