summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* Make it so TypeError is raised if an instance of an object is put in anBrett Cannon2007-02-261-19/+8
* Two more patches by Tony Lownds (SF# 1607548).Guido van Rossum2007-02-261-28/+7
* You can no longer catch non-BaseException objects; TypeError is raised if suchBrett Cannon2007-02-261-19/+23
* Merged revisions 53912-53951 via svnmerge fromThomas Wouters2007-02-261-2/+4
* Fix a refleak in the MAKE_FUNCTION opcode in ceval.c.Georg Brandl2007-02-261-0/+2
* Bytes literal.Thomas Wouters2007-02-231-0/+13
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-11/+0
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-76/+0
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-2/+32
* Fix minor grammar typo.Brett Cannon2007-01-291-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-1/+1
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+10
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-0/+28
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-3/+5
* Make it compile with older compilers.Guido van Rossum2006-11-221-3/+3
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-14/+64
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-117/+0
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-0/+18
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-8/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-8/+16
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-13/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-6/+12
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-4/+2
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-2/+13
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-76/+96
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-125/+25
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-171-13/+0
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-161-13/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-14/+4
* 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
* Use Py_ssize_t since we are working with list size belowNeal Norwitz2006-03-021-1/+1
* Put back the essence of Jeremy's original XXX comment.Thomas Wouters2006-03-011-1/+3
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-5/+5
* Updates to the with-statement:Guido van Rossum2006-02-281-6/+20
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-6/+17
* Check the return code for PyErr_Warn() when warning about raising stringBrett Cannon2006-02-271-4/+5
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-7/+42
* Bug #801349: document that start/stop/step slice arguments can be NoneGeorg Brandl2006-02-191-1/+1
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-16/+11
* Merge ssize_t branch.Martin v. Löwis2006-02-151-5/+8
* Explain the clearing of the stack in a comment in Python/ceval.c'sThomas Wouters2006-02-101-1/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Fix some mods that got dropped from the AST mergeNeal Norwitz2005-10-211-2/+2
* Merge ast-branch to headJeremy Hylton2005-10-201-30/+15
* clean-up tracing of C functions. In particular, don't call the trace funcArmin Rigo2005-09-201-26/+31
* Port from the Python 2.4 branch, patches for SF bug # 900092,Barry Warsaw2005-08-151-8/+14
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-3/+15
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-251-1/+1