summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* Use fileobject's filegetline() to implement unlimited raw_input().Guido van Rossum1991-04-041-19/+1
|
* Added isatty() for MPW.Guido van Rossum1991-04-041-0/+10
|
* Added error checking for numeric constants; added local/global variableGuido van Rossum1991-04-041-4/+112
| | | | optimization.
* 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.
* Moved get*doublearg() routines here from mathmodule.cGuido van Rossum1991-04-031-0/+29
|
* Added forward declaration (to satisfy Standard C).Guido van Rossum1991-04-031-0/+3
|
* Create code string with initial size of 1000 instead of 0.Guido van Rossum1991-04-031-1/+1
|
* Define and use GETNAMEV macro.Guido van Rossum1991-04-031-2/+3
|
* Include patchlevel.h (to ensure it is distributed with the rest).Guido van Rossum1991-03-061-0/+2
|
* Added copyright notice.Guido van Rossum1991-02-1915-0/+360
|
* Added version that opens a pipe to /bin/pwd.Guido van Rossum1991-02-191-4/+47
|
* Call the init function of a built-in module here.Guido van Rossum1991-02-191-2/+31
| | | | ,
* Reversed min and max (to alphabetical order).Guido van Rossum1991-02-191-1/+1
|
* Fix bug in input(); add comments to cases in compile().Guido van Rossum1991-01-211-7/+6
|
* File name shortening.Guido van Rossum1991-01-212-2/+2
|
* Initial revisionGuido van Rossum1991-01-211-0/+35
|
* Return -1 for errors.Guido van Rossum1990-12-201-1/+1
|
* Changes for THINK C 4.0.Guido van Rossum1990-12-201-9/+11
| | | | Don't call inittime() and initmath(), let config_*.c decide about those.
* Changed include of <errno.h>Guido van Rossum1990-12-201-2/+5
|
* Change div() into divide(); div() is a Standard C function.Guido van Rossum1990-12-201-2/+2
|
* "Compiling" versionGuido van Rossum1990-12-2011-1308/+2229
|
* Empty all modules' symbol tables, so most circular references areGuido van Rossum1990-11-181-6/+41
| | | | | | cleared up. (A function definition references its module's symbol table but the symbol table of course references the function...)
* Some extra DECREFs.Guido van Rossum1990-11-181-3/+9
|
* Add extra DECREF.Guido van Rossum1990-11-181-0/+1
|
* 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.
* 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).
* Moved configuration-dependent initializations (etc.) to config_*.cGuido van Rossum1990-11-181-154/+9
|
* Initial revisionGuido van Rossum1990-11-182-0/+3097
|
* Reformulated err_badarg error message.Guido van Rossum1990-11-091-1/+1
|
* Added provision for THINK C which doesn't have sys_nerrors or sys_errlist.Guido van Rossum1990-11-021-1/+6
|
* Added prototype for strerror.Guido van Rossum1990-11-021-0/+2
|
* removed dir statement. Function arguments may now be tests.Guido van Rossum1990-10-261-487/+463
|
* Added reload() functionality.Guido van Rossum1990-10-261-21/+66
|
* Added intobject.h and tupleobject.h includes.Guido van Rossum1990-10-261-0/+2
|
* Added err_badcall().Guido van Rossum1990-10-211-0/+6
|
* Call asa_done() in goaway().Guido van Rossum1990-10-141-0/+7
|
* Move err_badarg() and err_nomme() to errors.c.Guido van Rossum1990-10-141-16/+0
|
* Adde dconvenience functions.Guido van Rossum1990-10-141-0/+31
|
* Initial revisionGuido van Rossum1990-10-149-0/+2722