summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
Commit message (Collapse)AuthorAgeFilesLines
* Subsumed mappingobject.h in dictobject.h.Guido van Rossum1997-05-131-1/+1
|
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-0/+6
| | | | symbols is needed, define these in Python.h with a Py_ prefix.
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-0/+2
| | | | | All per-thread globals are moved into a struct which is manipulated separately.
* Several oopsies -- Py_ALLOBJECTS_H -> Py_PYTHON_H, temporarily removedGuido van Rossum1997-05-021-6/+3
| | | | | pystate.h (to be restored later when that code is debugged), removed accessobject.h.
* Moved allobjects.h to Python.h (without rename2.h).Guido van Rossum1997-05-021-3/+116
| | | | | allobjects.h disappears -- old-style extensions must include Python.h and rename2.h.
* The great renaming, phase two: all header files have been updated toGuido van Rossum1995-01-121-1/+1
| | | | | | | 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".
* pythonrun.h: added run_pyc_fileGuido van Rossum1994-09-141-0/+3
ceval.h: added Py_AddPendingCall rest: modules using the new naming scheme must now include Python.h