diff options
author | Guido van Rossum <guido@python.org> | 1997-08-02 02:56:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-02 02:56:48 (GMT) |
commit | 29e46a9a12592b89d81f87245b903486c589695a (patch) | |
tree | 35cfadc8d8080dc2aa3cac1e741eb9db88f71040 /Include/import.h | |
parent | 7a2d6112d95d5944b60b78232a5a75570db6e76a (diff) | |
download | cpython-29e46a9a12592b89d81f87245b903486c589695a.zip cpython-29e46a9a12592b89d81f87245b903486c589695a.tar.gz cpython-29e46a9a12592b89d81f87245b903486c589695a.tar.bz2 |
Mass checkin (more to follow for other directories).
Introduce truly separate (sub)interpreter objects. For now, these
must be used by separate threads, created from C. See Demo/pysvr for
an example of how to use this. This also rationalizes Python's
initialization and finalization behavior:
Py_Initialize() -- initialize the whole interpreter
Py_Finalize() -- finalize the whole interpreter
tstate = Py_NewInterpreter() -- create a new (sub)interpreter
Py_EndInterpreter(tstate) -- delete a new (sub)interpreter
There are also new interfaces relating to threads and the interpreter
lock, which can be used to create new threads, and sometimes have to
be used to manipulate the interpreter lock when creating or deleting
sub-interpreters. These are only defined when WITH_THREAD is defined:
PyEval_AcquireLock() -- acquire the interpreter lock
PyEval_ReleaseLock() -- release the interpreter lock
PyEval_AcquireThread(tstate) -- acquire the lock and make the thread current
PyEval_ReleaseThread(tstate) -- release the lock and make NULL current
Other administrative changes:
- The header file bltinmodule.h is deleted.
- The init functions for Import, Sys and Builtin are now internal and
declared in pythonrun.h.
- Py_Setup() and Py_Cleanup() are no longer declared.
- The interpreter state and thread state structures are now linked
together in a chain (the chain of interpreters is a static variable
in pythonrun.c).
- Some members of the interpreter and thread structures have new,
shorter, more consistent, names.
- Added declarations for _PyImport_{Find,Fixup}Extension() to import.h.
Diffstat (limited to 'Include/import.h')
-rw-r--r-- | Include/import.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/import.h b/Include/import.h index 4ddbd4c..f5fa9bb 100644 --- a/Include/import.h +++ b/Include/import.h @@ -37,7 +37,6 @@ PERFORMANCE OF THIS SOFTWARE. /* Module definition and import interface */ -void PyImport_Init Py_PROTO((void)); long PyImport_GetMagicNumber Py_PROTO((void)); PyObject *PyImport_ExecCodeModule Py_PROTO((char *name, PyObject *co)); PyObject *PyImport_GetModuleDict Py_PROTO((void)); @@ -47,6 +46,9 @@ PyObject *PyImport_ReloadModule Py_PROTO((PyObject *m)); void PyImport_Cleanup Py_PROTO((void)); int PyImport_ImportFrozenModule Py_PROTO((char *)); +extern PyObject *_PyImport_FindExtension Py_PROTO((char *, char *)); +extern PyObject *_PyImport_FixupExtension Py_PROTO((char *, char *)); + struct _inittab { char *name; void (*initfunc)(); |