summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* fix typo (== for =) in assignmentGuido van Rossum1995-02-171-1/+1
|
* fix bug in try-finally with class exceptions; declare different func ↵Guido van Rossum1995-02-171-6/+7
| | | | pointers for different uses
* Added hooks to support importing pyc code from a resource on the mac.Jack Jansen1995-02-152-8/+47
|
* call __import__() with 4 args instead of 1Guido van Rossum1995-02-142-2/+56
|
* Added code to import dynamic modules using mac CFM.Jack Jansen1995-02-131-2/+41
|
* mac changes:Jack Jansen1995-02-131-0/+8
| | | | | | - Assume files of types 'PYC ' and 'APPL' are compiled python code - For mwerks, show status line when program has terminated while keeping window open.
* use Py_CHARMASKGuido van Rossum1995-02-103-6/+15
|
* test for float to the float power hereGuido van Rossum1995-02-101-0/+5
|
* DECREF result of run_stringGuido van Rossum1995-02-071-2/+3
|
* init_frozen non-static, frozenmain.c not in Makefile any moreGuido van Rossum1995-02-072-2/+4
|
* print class name for exceptions that are classesGuido van Rossum1995-02-071-2/+14
|
* Under CodeWarrior, make the window go away on exit(0)Jack Jansen1995-02-021-0/+11
|
* remove unused variableGuido van Rossum1995-01-301-1/+0
|
* fix glaring bug in get_magicGuido van Rossum1995-01-301-2/+2
|
* Think C mod to suppress pausing at normal exitGuido van Rossum1995-01-301-0/+8
|
* removed frozenmain.o from objects added to libraryGuido van Rossum1995-01-261-2/+1
|
* don't dictclear deleted modules in doneimportGuido van Rossum1995-01-261-17/+22
|
* allow classes as exceptionsGuido van Rossum1995-01-261-4/+26
|
* make call_pyc_file staticGuido van Rossum1995-01-261-1/+4
|
* added missing case to get_docstringGuido van Rossum1995-01-261-2/+10
|
* moved callable() to object.cGuido van Rossum1995-01-261-29/+0
|
* don't overwrite error already set (e.g. from O&)Guido van Rossum1995-01-211-1/+3
|
* removed getopt.o from OBJSGuido van Rossum1995-01-201-1/+1
|
* fix mem leak (localmap in optimize)Guido van Rossum1995-01-201-0/+1
|
* support "O&" taking an object constructor a void*Guido van Rossum1995-01-201-2/+10
|
* add missing INCREF in RAISE_EXCEPTIONGuido van Rossum1995-01-201-1/+2
|
* don't use function prototypesGuido van Rossum1995-01-201-1/+4
|
* added changes for NetBSD dynamic linking; removed shared linking for NeXTGuido van Rossum1995-01-201-3/+16
|
* fix import related leaksGuido van Rossum1995-01-202-17/+23
|
* Undef strerror on the mac before redefining itJack Jansen1995-01-191-0/+1
|
* added getopt.c to object, permanentlyGuido van Rossum1995-01-171-1/+2
|
* include rename2.hGuido van Rossum1995-01-171-0/+2
|
* rename method arg because of typedef conflictGuido van Rossum1995-01-171-4/+4
|
* fix Alpha bug in (x)range; different __builtins__ initializationGuido van Rossum1995-01-171-8/+14
|
* nt thread supportGuido van Rossum1995-01-172-0/+249
|
* different init for __builtins__Guido van Rossum1995-01-171-2/+2
|
* added $& to $(LIB) target for SequentGuido van Rossum1995-01-171-1/+1
|
* use getbuiltins() everywhere, it defaults to getbuiltidict()Guido van Rossum1995-01-123-3/+4
|
* Include rename2.hGuido van Rossum1995-01-121-0/+1
|
* fix subtle refcount big in filter() -- Tim MacKenzieGuido van Rossum1995-01-101-3/+6
|
* move coerce() from bltinmodule.c to object.c and implement builtin_coerce() ↵Guido van Rossum1995-01-101-50/+7
| | | | differently
* fix globals/locals defaults for eval/execfileGuido van Rossum1995-01-101-10/+10
|
* __builtins__ mods (and sys_checkinterval for ceval.c)Guido van Rossum1995-01-094-40/+82
|
* Alpha OSF/1 fixGuido van Rossum1995-01-091-1/+4
|
* api version checkingGuido van Rossum1995-01-091-14/+16
|
* remove nogus reload checkGuido van Rossum1995-01-091-5/+0
|
* sys.check_interval=x -> sys.setcheckinterval(x)Guido van Rossum1995-01-091-0/+13
|
* New newmethodobject() interface takes struct methodlist pointerGuido van Rossum1995-01-071-15/+14
| | | | | instead of individual components; initmodule3() now has doc string argument as well
* Two independent chages:Guido van Rossum1995-01-071-27/+156
| | | | | (a) support import NAME.NAME...NAME; (b) support doc strings in modules, classes and function definitions
* Use new instancebinop interfaceGuido van Rossum1995-01-071-18/+18
|