Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Return -1 for errors. | Guido van Rossum | 1990-12-20 | 3 | -3/+3 |
| | |||||
* | Changes for THINK C 4.0. | Guido van Rossum | 1990-12-20 | 1 | -9/+11 |
| | | | | Don't call inittime() and initmath(), let config_*.c decide about those. | ||||
* | Changess for THINK C 4.0. | Guido van Rossum | 1990-12-20 | 1 | -2/+2 |
| | |||||
* | Add <errno.h>. | Guido van Rossum | 1990-12-20 | 1 | -0/+5 |
| | |||||
* | Added <errno.h> | Guido van Rossum | 1990-12-20 | 1 | -0/+5 |
| | |||||
* | Changed include of <errno.h> | Guido van Rossum | 1990-12-20 | 1 | -2/+5 |
| | |||||
* | Initial revision | Guido van Rossum | 1990-12-20 | 1 | -0/+86 |
| | |||||
* | Change div() into divide(); div() is a Standard C function. | Guido van Rossum | 1990-12-20 | 1 | -2/+2 |
| | |||||
* | Include <string.h> instead of "string.h". | Guido van Rossum | 1990-12-20 | 1 | -1/+1 |
| | |||||
* | "Compiling" version | Guido van Rossum | 1990-12-20 | 72 | -2000/+3302 |
| | |||||
* | Changed interface (no nodes but code). | Guido van Rossum | 1990-11-18 | 1 | -2/+2 |
| | |||||
* | Function objects no longer contain a parse tree node, but intermediate | Guido van Rossum | 1990-11-18 | 1 | -38/+13 |
| | | | | code. | ||||
* | Empty all modules' symbol tables, so most circular references are | Guido van Rossum | 1990-11-18 | 1 | -6/+41 |
| | | | | | | cleared up. (A function definition references its module's symbol table but the symbol table of course references the function...) | ||||
* | Fix wrong #ifdef. | Guido van Rossum | 1990-11-18 | 1 | -1/+1 |
| | |||||
* | Some extra DECREFs. | Guido van Rossum | 1990-11-18 | 1 | -3/+9 |
| | |||||
* | Set parse tree in parser data structure to NULL when returning | Guido van Rossum | 1990-11-18 | 1 | -3/+4 |
| | | | | a valid parse tree to caller, so caller must free the tree. | ||||
* | Free parse tree when deleting parser. | Guido van Rossum | 1990-11-18 | 1 | -2/+3 |
| | |||||
* | Added opcodes for classes. | Guido van Rossum | 1990-11-18 | 1 | -0/+2 |
| | |||||
* | Added prototype for new function freenode(). | Guido van Rossum | 1990-11-18 | 1 | -0/+1 |
| | |||||
* | Add function to free an entire parse tree. | Guido van Rossum | 1990-11-18 | 1 | -0/+23 |
| | |||||
* | DECREF pi and e after inserting in symbol table. | Guido van Rossum | 1990-11-18 | 1 | -2/+4 |
| | |||||
* | Add extra DECREF. | Guido van Rossum | 1990-11-18 | 1 | -0/+1 |
| | |||||
* | Compile class definitions. | Guido van Rossum | 1990-11-18 | 1 | -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 Rossum | 1990-11-18 | 1 | -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). | ||||
* | Fixed resizestring() to work if reference tracing is turned on. | Guido van Rossum | 1990-11-18 | 1 | -6/+13 |
| | | | | | The realloc() call would move the list head without fixing the pointers to in the the chain of allocated objects... | ||||
* | Moved configuration-dependent initializations (etc.) to config_*.c | Guido van Rossum | 1990-11-18 | 1 | -154/+9 |
| | |||||
* | Initial revision | Guido van Rossum | 1990-11-18 | 3 | -0/+3175 |
| | |||||
* | Add UNREF macro if not tracing refs (see UNREF function in object.c). | Guido van Rossum | 1990-11-18 | 1 | -0/+1 |
| | |||||
* | Increment line number for continuation lines. | Guido van Rossum | 1990-11-09 | 1 | -0/+1 |
| | |||||
* | Reformulated err_badarg error message. | Guido van Rossum | 1990-11-09 | 1 | -1/+1 |
| | |||||
* | Turn close commands into WE_CLOSE events. | Guido van Rossum | 1990-11-06 | 1 | -13/+7 |
| | | | | Remove (broken) compatibility hacks from cutbuffer interface. | ||||
* | Initial revision | Guido van Rossum | 1990-11-05 | 10 | -0/+812 |
| | |||||
* | *** empty log message *** | Guido van Rossum | 1990-11-05 | 10 | -424/+430 |
| | |||||
* | Be more careful with negative reference counts. | Guido van Rossum | 1990-11-02 | 1 | -3/+3 |
| | |||||
* | Added provision for THINK C which doesn't have sys_nerrors or sys_errlist. | Guido van Rossum | 1990-11-02 | 1 | -1/+6 |
| | |||||
* | Moved prototyes for fmod and pow, and don't use them for THINK C. | Guido van Rossum | 1990-11-02 | 1 | -2/+5 |
| | |||||
* | Added prototype for strerror. | Guido van Rossum | 1990-11-02 | 1 | -0/+2 |
| | |||||
* | Removed redundant prototype for err_nomem(). | Guido van Rossum | 1990-11-02 | 1 | -2/+4 |
| | | | | Added check for negative refcnt in DELREF. | ||||
* | Added new event types and selection types. | Guido van Rossum | 1990-10-31 | 2 | -0/+20 |
| | |||||
* | Added S_IMODE() to strip the file type (S_IFMT) from a mode. | Guido van Rossum | 1990-10-31 | 1 | -0/+2 |
| | |||||
* | Initial revision | Guido van Rossum | 1990-10-31 | 4 | -0/+226 |
| | |||||
* | Changed resizing functionality. | Guido van Rossum | 1990-10-31 | 2 | -4/+6 |
| | |||||
* | removed resizing functionality. | Guido van Rossum | 1990-10-31 | 2 | -28/+12 |
| | |||||
* | Separated out resizing functionality. | Guido van Rossum | 1990-10-31 | 2 | -14/+10 |
| | |||||
* | Added w.setwincursor(), selection, and new cut buffer interface. | Guido van Rossum | 1990-10-30 | 1 | -5/+103 |
| | |||||
* | Change set/getcutbuffer to use the new stdwin interface. | Guido van Rossum | 1990-10-30 | 1 | -4/+8 |
| | | | | This makes it possible to cut/paste strings wuth embedded null bytes. | ||||
* | Added prototype to declaration of strerror(). | Guido van Rossum | 1990-10-30 | 1 | -1/+1 |
| | |||||
* | Added prototype for sortlist(). | Guido van Rossum | 1990-10-30 | 1 | -0/+1 |
| | |||||
* | Added external interface to sort a list. | Guido van Rossum | 1990-10-30 | 1 | -0/+15 |
| | |||||
* | Added some prototypes. | Guido van Rossum | 1990-10-30 | 1 | -2/+2 |
| |