summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* changes for keyword args to built-in functions and classesGuido van Rossum1995-07-263-3/+6
|
* add forgotten PyObject_SetAttrStringGuido van Rossum1995-07-261-0/+1
|
* keyword arguments and faster function callsGuido van Rossum1995-07-189-32/+38
|
* include abstract.hGuido van Rossum1995-07-181-0/+2
|
* Generic Abstract Object InterfaceGuido van Rossum1995-07-181-0/+810
|
* new opcodes RAISE_VARARGS, CALL_FUNCTIONGuido van Rossum1995-07-071-0/+8
|
* new grammar symbols arglist and argumentGuido van Rossum1995-07-071-0/+2
|
* Changed ifdef __CFM68K__ to ifdef SYMANTEC__CFM68K__: CW has its ownJack Jansen1995-06-273-5/+5
| | | | unique set of ideosyncracies:-(
* removed duplicate defs for None, False, TrueGuido van Rossum1995-04-281-4/+0
|
* DL_IMPORT needs an argument.Sjoerd Mullender1995-04-252-3/+3
|
* DL_IMPORT macro was called in a funny way (and MW barfed on it)Jack Jansen1995-04-232-3/+3
|
* Also count UNREF's as freeing an object (only relevant whenSjoerd Mullender1995-04-061-1/+2
| | | | COUNT_ALLOCS is defined).
* finalizing 1.2Guido van Rossum1995-04-051-1/+1
|
* fix dusty debugging macrosGuido van Rossum1995-03-291-5/+5
|
* addet SETTUPLEITEM and added cast to GETTUPLEITEMGuido van Rossum1995-03-092-1/+5
|
* make the type a parameter of the DL_IMPORT macro, for Borland CGuido van Rossum1995-02-2722-63/+67
|
* change in staticforward -- added statichereGuido van Rossum1995-02-211-1/+7
|
* changes for Mac CFM-68KGuido van Rossum1995-02-183-0/+28
|
* add Py_FatalErrorGuido van Rossum1995-02-171-0/+2
|
* added PyObject_IsTrue & PyCallable_Check to object interfaceGuido van Rossum1995-02-171-0/+2
|
* exec_dode_object/PyImport_ExecCodeObject is now externally visibleJack Jansen1995-02-152-1/+3
|
* version 1.2-beta-3Guido van Rossum1995-02-131-1/+1
|
* make newvarobj's size arg signedGuido van Rossum1995-02-102-2/+2
|
* add Py_CHARMASKGuido van Rossum1995-02-101-0/+8
|
* added callable, removed run_pyc_fileGuido van Rossum1995-02-072-1/+1
|
* added findmethodinchain and methodchain data typesGuido van Rossum1995-01-262-0/+10
|
* corrected two unconverted namesGuido van Rossum1995-01-202-2/+2
|
* last bitsGuido van Rossum1995-01-171-1/+1
|
* new names for lots of new functionsGuido van Rossum1995-01-1719-55/+90
|
* The great renaming, phase two: all header files have been updated toGuido van Rossum1995-01-1247-572/+975
| | | | | | | use the new names exclusively, and the linker will see the new names. Files that import "Python.h" also only see the new names. Files that import "allobjects.h" will continue to be able to use the old names, due to the inclusion (in allobjects.h) of "rename2.h".
* changes for C++ (Tim MacKenzie)Guido van Rossum1995-01-101-5/+9
|
* __builtins__ mods (and sys_checkinterval for ceval.c)Guido van Rossum1995-01-094-5/+8
|
* api version checkingGuido van Rossum1995-01-091-3/+16
|
* sys.check_interval=x -> sys.setcheckinterval(x)Guido van Rossum1995-01-091-0/+1
|
* initmodule2 -> initmodule3 (with doc string)Guido van Rossum1995-01-071-1/+2
|
* Changed since Grammar has changedGuido van Rossum1995-01-071-31/+32
|
* add 5th arg to instancebinopGuido van Rossum1995-01-071-1/+2
|
* added func_docGuido van Rossum1995-01-071-0/+1
|
* added ml_doc and changed newmethodlist interfaceGuido van Rossum1995-01-071-4/+5
|
* new tp_str and tp_doc members in type objectGuido van Rossum1995-01-071-0/+10
|
* Added 1995 copyright.Guido van Rossum1995-01-0451-108/+112
| | | | | | object.h: made sizes and refcnts signed ints. stringobject.h: make getstrsize() signed int. methodobject.h: add METH_VARARGS and METH_FREENAME flag bit definitions.
* Lots of small things, see ChangeLogGuido van Rossum1994-12-309-10/+14
|
* - Added ability to get at strings embedded in the structJack Jansen1994-12-141-0/+7
| | | | - For the mac, added ability to get at pascal-style strings
* Use \n as PYTHONPATH delimiter on Mac (less likely to occur inJack Jansen1994-12-141-1/+2
| | | | filenames than space).
* pl1.1.1; added newgetargs renamingGuido van Rossum1994-11-102-1/+2
|
* include stddef.hGuido van Rossum1994-10-201-0/+4
|
* Oops -- version number!Guido van Rossum1994-10-061-1/+1
|
* ceval.h: added Py_MakePendingCalls()Guido van Rossum1994-09-284-1/+4
| | | | | | classobject.h: added instancebinop() modsupport.h: added newgetargs() rename1.h: removed Py_FPROTO
* pythonrun.h: added run_pyc_fileGuido van Rossum1994-09-145-5/+14
| | | | | ceval.h: added Py_AddPendingCall rest: modules using the new naming scheme must now include Python.h
* pythgonrun.h: added Py_AtExit().Guido van Rossum1994-09-072-0/+3
| | | | rename1.h: add PyArg_GetInt.