summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* * Python/bltinmodule.c: restructured coerce(), divmod(), pow() toGuido van Rossum1995-01-071-52/+80
| | | | use new instancebinop interface
* Grammar changedGuido van Rossum1995-01-071-466/+480
|
* NT dlls have .pyd extension instead of .dllGuido van Rossum1995-01-071-2/+2
|
* Added 1995 to copyright message.Guido van Rossum1995-01-0431-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 ofGuido van Rossum1995-01-0215-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 Mullender1994-12-141-1/+1
|
* - Added ability to get at strings embedded in the structJack Jansen1994-12-141-1/+23
| | | | - For the mac, added ability to get at pascal-style strings
* Removed extraneous fclose() in case of .pyc file argumentJack Jansen1994-12-141-1/+1
|
* Added hook for better mac error messages.Jack Jansen1994-12-141-0/+10
|
* replace abort() calls by fatal()Guido van Rossum1994-11-101-14/+6
|
* set name to <lambda> instead of None for lambdasGuido van Rossum1994-11-101-7/+2
|
* prevent core dump for old getargs() with NULL argGuido van Rossum1994-11-101-0/+7
|
* call err_clear in err_setvalGuido van Rossum1994-11-101-2/+2
|
* fix pow() core dumpGuido van Rossum1994-11-101-1/+1
|
* add getargs.o:getargs.c ruleGuido van Rossum1994-10-111-0/+1
|
* Plug memory leak for code objectsGuido van Rossum1994-10-051-0/+1
|
* * Python/ceval.c, Include/ceval.h: promote MakePendingCalls toGuido van Rossum1994-09-292-10/+48
| | | | | | | | | | global: Py_MakePendingCalls. Also guard against recursive calls * Include/classobject.h, Objects/classobject.c, Python/{ceval.c,bltinmodule.c}: entirely redone operator overloading. The rules for class instances are now much more relaxed than for other built-in types (whose coerce must still return two objects of the same type)
* * Python/{modsupport.c,getargs.c,Makefile.in},Guido van Rossum1994-09-293-341/+588
| | | | | | | Include/modsupport.h: moved getargs() to its own file and re-implemented it entirely to support optional arguments, multiple arguments without surrounding parentheses (when called as newgetargs()), and better error messages
* * Python/errors.c (err_clear): clear interpreter stack traceGuido van Rossum1994-09-291-1/+5
|