| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
symbols is needed, define these in Python.h with a Py_ prefix.
|
|
|
|
|
| |
All per-thread globals are moved into a struct which is manipulated
separately.
|
|
|
|
|
| |
pystate.h (to be restored later when that code is debugged), removed
accessobject.h.
|
|
|
|
|
| |
allobjects.h disappears -- old-style extensions must include Python.h
and rename2.h.
|
|
|
|
|
|
|
| |
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".
|
|
ceval.h: added Py_AddPendingCall
rest: modules using the new naming scheme must now include Python.h
|