summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.Raymond Hettinger2007-12-181-1/+1
* Speed-up dictionary constructor by about 10%.Raymond Hettinger2007-12-181-0/+12
* Silence a warning about an unsed variable in debug buildsChristian Heimes2007-12-141-2/+3
* Fix typo.Georg Brandl2007-12-051-1/+1
* Merge from py3k branch:Amaury Forgeot d'Arc2007-11-131-7/+12
* Add build option for faster loop execution.Raymond Hettinger2007-11-071-0/+11
* Try harder to stay within the 79-column limit. There's still two places that ...Thomas Wouters2007-09-201-44/+55
* Whitespace cleanup.Thomas Wouters2007-09-191-27/+27
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-1/+1
* Patch #1686487: you can now pass any mapping after '**' in function calls.Georg Brandl2007-05-211-10/+29
* Remove an XXX that is unnecessary.Georg Brandl2007-05-111-1/+0
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-1/+1
* Patch #1682205: a TypeError while unpacking an iterable is no longerGeorg Brandl2007-03-211-5/+3
* Patch #1674228: when assigning a slice (old-style), check for theGeorg Brandl2007-03-051-1/+1
* Reformat long lines.Jeremy Hylton2007-02-261-2/+4
* Put declarations before code.Jeremy Hylton2007-02-251-1/+1
* Fix crash in exec when unicode filename can't be decoded.Jeremy Hylton2007-02-251-0/+2
* No more raising of string exceptions!Brett Cannon2007-01-301-13/+34
* SF# 1409443: Expand comment to cover the interaction between f->f_lasti and ...Raymond Hettinger2007-01-061-1/+10
* Forgot a case where the locals can now be a general mappingArmin Rigo2006-11-291-1/+3
* [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.ca...Andrew M. Kuchling2006-10-271-2/+2
* Move/copy assert for tstate != NULL before first use.Neal Norwitz2006-08-131-1/+7
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-9/+9
* Whoops, how did that get in there. :-) Revert all the parts of 51227 that we...Neal Norwitz2006-08-121-9/+0
* Check returned pointer is valid.Neal Norwitz2006-08-121-0/+9
* Concatenation on a long string breaks (SF #1526585).Armin Rigo2006-08-091-3/+9
* i and j are initialized below when used. No need to do it twiceNeal Norwitz2006-06-121-1/+1
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-1/+1
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-1/+1
* [ 1497053 ] Let dicts propagate the exceptions in user __eq__().Armin Rigo2006-06-011-2/+13
* needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in-Fredrik Lundh2006-05-271-60/+55
* Patch 1145039.Tim Peters2006-05-261-41/+56
* Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers,Fredrik Lundh2006-05-261-1/+1
* needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive"Fredrik Lundh2006-05-261-15/+23
* needforspeed: added Py_LOCAL macro, based on the LOCAL macro usedFredrik Lundh2006-05-261-53/+53
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-251-1/+1
* Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.Richard Jones2006-05-231-17/+17
* Fix #132 from Coverity, retval could have been derefedNeal Norwitz2006-05-191-0/+4
* Micro optimization. In the first case, we know that frame->f_exc_typeNeal Norwitz2006-05-091-3/+1
* Fix more ssize_t issues.Martin v. Löwis2006-04-221-2/+2
* Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; thisThomas Wouters2006-04-191-2/+2
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-117/+14
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-111-2/+2
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+3
* answer a question from a commentArmin Rigo2006-03-281-3/+3
* Fix a ssize_t issueNeal Norwitz2006-03-231-1/+1
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-22/+25
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-46/+22
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-1/+4