summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Collapse)AuthorAgeFilesLines
...
* add READONLY to member list.Guido van Rossum1992-01-121-4/+4
|
* Minor changes.Guido van Rossum1991-12-311-5/+10
|
* Changed some RuntimeErrors.Guido van Rossum1991-12-161-3/+4
|
* New argument passing.Guido van Rossum1991-12-161-14/+17
|
* Implement 'global' and new class syntax.Guido van Rossum1991-12-101-15/+92
|
* Added shift and mask ops.Guido van Rossum1991-10-241-33/+126
|
* Comment out 'abort()' call.Guido van Rossum1991-10-201-6/+7
| | | | Changed comparison operators.
* Use dmore dict2lookup.Guido van Rossum1991-08-161-3/+6
|
* New syntax: semicolons, continue statement.Guido van Rossum1991-07-271-21/+123
| | | | | For the latter we must keep track of the current block's type. (We can't continue through a try statement, sigh.()
* Check for identical types before comparing objects to see if theyGuido van Rossum1991-07-011-1/+1
| | | | | are the same -- 0 and 0.0 compare equal but should be considered different here!
* Changed and exported newcodeobject() interface, for ".pyc" files.Guido van Rossum1991-06-041-10/+9
|
* Don't optimize <string> and <stdin> codeGuido van Rossum1991-05-141-1/+1
|
* Added long integer support.Guido van Rossum1991-05-051-0/+4
|
* BUGFIX! Instructions are unsigned bytes.Guido van Rossum1991-04-161-4/+4
|
* Added error checking for numeric constants; added local/global variableGuido van Rossum1991-04-041-4/+112
| | | | optimization.
* Create code string with initial size of 1000 instead of 0.Guido van Rossum1991-04-031-1/+1
|
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
|
* Fix bug in input(); add comments to cases in compile().Guido van Rossum1991-01-211-7/+6
|
* "Compiling" versionGuido van Rossum1990-12-201-67/+130
|
* Compile class definitions.Guido van Rossum1990-11-181-27/+176
| | | | | | Document and fix code generation for try statements. Use two bytes for all arguments. Avoid duplicate entries in lists of constants and names.
* Initial revisionGuido van Rossum1990-11-181-0/+1537