| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | don't dictclear deleted modules in doneimport | Guido van Rossum | 1995-01-26 | 1 | -17/+22 |
| | | |||||
| * | allow classes as exceptions | Guido van Rossum | 1995-01-26 | 1 | -4/+26 |
| | | |||||
| * | make call_pyc_file static | Guido van Rossum | 1995-01-26 | 1 | -1/+4 |
| | | |||||
| * | added missing case to get_docstring | Guido van Rossum | 1995-01-26 | 1 | -2/+10 |
| | | |||||
| * | moved callable() to object.c | Guido van Rossum | 1995-01-26 | 1 | -29/+0 |
| | | |||||
| * | don't overwrite error already set (e.g. from O&) | Guido van Rossum | 1995-01-21 | 1 | -1/+3 |
| | | |||||
| * | removed getopt.o from OBJS | Guido van Rossum | 1995-01-20 | 1 | -1/+1 |
| | | |||||
| * | fix mem leak (localmap in optimize) | Guido van Rossum | 1995-01-20 | 1 | -0/+1 |
| | | |||||
| * | support "O&" taking an object constructor a void* | Guido van Rossum | 1995-01-20 | 1 | -2/+10 |
| | | |||||
| * | add missing INCREF in RAISE_EXCEPTION | Guido van Rossum | 1995-01-20 | 1 | -1/+2 |
| | | |||||
| * | don't use function prototypes | Guido van Rossum | 1995-01-20 | 1 | -1/+4 |
| | | |||||
| * | added changes for NetBSD dynamic linking; removed shared linking for NeXT | Guido van Rossum | 1995-01-20 | 1 | -3/+16 |
| | | |||||
| * | fix import related leaks | Guido van Rossum | 1995-01-20 | 2 | -17/+23 |
| | | |||||
| * | Undef strerror on the mac before redefining it | Jack Jansen | 1995-01-19 | 1 | -0/+1 |
| | | |||||
| * | added getopt.c to object, permanently | Guido van Rossum | 1995-01-17 | 1 | -1/+2 |
| | | |||||
| * | include rename2.h | Guido van Rossum | 1995-01-17 | 1 | -0/+2 |
| | | |||||
| * | rename method arg because of typedef conflict | Guido van Rossum | 1995-01-17 | 1 | -4/+4 |
| | | |||||
| * | fix Alpha bug in (x)range; different __builtins__ initialization | Guido van Rossum | 1995-01-17 | 1 | -8/+14 |
| | | |||||
| * | nt thread support | Guido van Rossum | 1995-01-17 | 2 | -0/+249 |
| | | |||||
| * | different init for __builtins__ | Guido van Rossum | 1995-01-17 | 1 | -2/+2 |
| | | |||||
| * | added $& to $(LIB) target for Sequent | Guido van Rossum | 1995-01-17 | 1 | -1/+1 |
| | | |||||
| * | use getbuiltins() everywhere, it defaults to getbuiltidict() | Guido van Rossum | 1995-01-12 | 3 | -3/+4 |
| | | |||||
| * | Include rename2.h | Guido van Rossum | 1995-01-12 | 1 | -0/+1 |
| | | |||||
| * | fix subtle refcount big in filter() -- Tim MacKenzie | Guido van Rossum | 1995-01-10 | 1 | -3/+6 |
| | | |||||
| * | move coerce() from bltinmodule.c to object.c and implement builtin_coerce() ↵ | Guido van Rossum | 1995-01-10 | 1 | -50/+7 |
| | | | | | differently | ||||
| * | fix globals/locals defaults for eval/execfile | Guido van Rossum | 1995-01-10 | 1 | -10/+10 |
| | | |||||
| * | __builtins__ mods (and sys_checkinterval for ceval.c) | Guido van Rossum | 1995-01-09 | 4 | -40/+82 |
| | | |||||
| * | Alpha OSF/1 fix | Guido van Rossum | 1995-01-09 | 1 | -1/+4 |
| | | |||||
| * | api version checking | Guido van Rossum | 1995-01-09 | 1 | -14/+16 |
| | | |||||
| * | remove nogus reload check | Guido van Rossum | 1995-01-09 | 1 | -5/+0 |
| | | |||||
| * | sys.check_interval=x -> sys.setcheckinterval(x) | Guido van Rossum | 1995-01-09 | 1 | -0/+13 |
| | | |||||
| * | New newmethodobject() interface takes struct methodlist pointer | Guido van Rossum | 1995-01-07 | 1 | -15/+14 |
| | | | | | | instead of individual components; initmodule3() now has doc string argument as well | ||||
| * | Two independent chages: | Guido van Rossum | 1995-01-07 | 1 | -27/+156 |
| | | | | | | (a) support import NAME.NAME...NAME; (b) support doc strings in modules, classes and function definitions | ||||
| * | Use new instancebinop interface | Guido van Rossum | 1995-01-07 | 1 | -18/+18 |
| | | |||||
| * | * Python/bltinmodule.c: restructured coerce(), divmod(), pow() to | Guido van Rossum | 1995-01-07 | 1 | -52/+80 |
| | | | | | use new instancebinop interface | ||||
| * | Grammar changed | Guido van Rossum | 1995-01-07 | 1 | -466/+480 |
| | | |||||
| * | NT dlls have .pyd extension instead of .dll | Guido van Rossum | 1995-01-07 | 1 | -2/+2 |
| | | |||||
| * | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 31 | -74/+91 |
| | | | | | | | bltinmodule.c: fixed coerce() nightmare in ternary pow(). modsupport.c (initmodule2): pass METH_FREENAME flag to newmethodobject(). pythonrun.c: move flushline() into and around print_error(). | ||||
| * | Lots of changes, most minor (fatal() instead of abort(), use of | Guido van Rossum | 1995-01-02 | 15 | -995/+1777 |
| | | | | | | | err_fetch/err_restore and so on). But... NOTE: import.c has been rewritten and all the DL stuff is now in the new file importdl.c. | ||||
| * | Added comment symbols around word after #endif. | Sjoerd Mullender | 1994-12-14 | 1 | -1/+1 |
| | | |||||
| * | - Added ability to get at strings embedded in the struct | Jack Jansen | 1994-12-14 | 1 | -1/+23 |
| | | | | | - For the mac, added ability to get at pascal-style strings | ||||
| * | Removed extraneous fclose() in case of .pyc file argument | Jack Jansen | 1994-12-14 | 1 | -1/+1 |
| | | |||||
| * | Added hook for better mac error messages. | Jack Jansen | 1994-12-14 | 1 | -0/+10 |
| | | |||||
| * | replace abort() calls by fatal() | Guido van Rossum | 1994-11-10 | 1 | -14/+6 |
| | | |||||
| * | set name to <lambda> instead of None for lambdas | Guido van Rossum | 1994-11-10 | 1 | -7/+2 |
| | | |||||
| * | prevent core dump for old getargs() with NULL arg | Guido van Rossum | 1994-11-10 | 1 | -0/+7 |
| | | |||||
| * | call err_clear in err_setval | Guido van Rossum | 1994-11-10 | 1 | -2/+2 |
| | | |||||
| * | fix pow() core dump | Guido van Rossum | 1994-11-10 | 1 | -1/+1 |
| | | |||||
| * | add getargs.o:getargs.c rule | Guido van Rossum | 1994-10-11 | 1 | -0/+1 |
| | | |||||
| * | Plug memory leak for code objects | Guido van Rossum | 1994-10-05 | 1 | -0/+1 |
| | | |||||
