summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Collapse)AuthorAgeFilesLines
* Added UNPACK_VARARG code.Guido van Rossum1992-01-141-0/+36
|
* User trace feature.Guido van Rossum1992-01-121-27/+162
|
* Fix bug in assign_slice for negative index; used length of wrong object!Guido van Rossum1992-01-101-1/+1
|
* Negative subscript are now allowed as in slices.Guido van Rossum1991-12-241-7/+14
| | | | Added ImportError.
* New argument passing mechanism.Guido van Rossum1991-12-161-35/+109
|
* Added STORE_GLOBAL and DELETE_GLOBAL.Guido van Rossum1991-12-101-4/+24
| | | | Exceptions may now also be tuples.
* Added shift and mask ops.Guido van Rossum1991-10-241-0/+170
|
* newclassobject() gets a third argumentGuido van Rossum1991-10-201-1/+1
|
* Changed many calls to dict stufff to dict2 variants.Guido van Rossum1991-08-161-31/+35
| | | | *** Somehow the call to printobject was changed back to fwrite?!?! ***
* Add interface to call a Python function (or other callable) objectGuido van Rossum1991-07-271-0/+13
| | | | from C.
* Call printobject instead of fwrite to print strings.Guido van Rossum1991-07-221-2/+2
|
* Call coerce() in arithmetic operations, to support mixed mode arithmeticGuido van Rossum1991-07-011-12/+46
|
* printobject now returns an error codeGuido van Rossum1991-06-071-3/+4
|
* Remove test for unimplemented sq_repeat method (see tupleobject comments)Guido van Rossum1991-06-041-4/+0
|
* Declare ticker as int; made testbool generic for all numeric typesGuido van Rossum1991-05-141-7/+5
|
* Renamed class methods to instance methods (which they are)Guido van Rossum1991-05-051-5/+5
|
* Moved support functions after main function; added prototypes;Guido van Rossum1991-04-041-572/+617
| | | | | Fixed 'needspace' hack to use a flag in the stdout file object; added local and global variable lookup cases.
* Define and use GETNAMEV macro.Guido van Rossum1991-04-031-2/+3
|
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
|
* File name shortening.Guido van Rossum1991-01-211-1/+1
|
* Change div() into divide(); div() is a Standard C function.Guido van Rossum1990-12-201-2/+2
|
* "Compiling" versionGuido van Rossum1990-12-201-809/+659
|
* Free parse tree after compiling.Guido van Rossum1990-11-181-169/+171
| | | | | | Added support for class definitions. Reorganized main interpreter loop to fetch op and arg once at the head. Use two bytes for arguments (see ceval.c).
* Initial revisionGuido van Rossum1990-11-181-0/+1560