mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
Add PyImport_AppendInittab() an PyImport_ExtendInittab().
This commit is contained in:
parent
8b3282be9f
commit
16926bd75e
1 changed files with 3 additions and 0 deletions
|
|
@ -61,6 +61,9 @@ struct _inittab {
|
||||||
|
|
||||||
extern DL_IMPORT(struct _inittab *) PyImport_Inittab;
|
extern DL_IMPORT(struct _inittab *) PyImport_Inittab;
|
||||||
|
|
||||||
|
extern int PyImport_AppendInittab Py_PROTO((char *name, void (*initfunc)()));
|
||||||
|
extern int PyImport_ExtendInittab Py_PROTO((struct _inittab *newtab));
|
||||||
|
|
||||||
struct _frozen {
|
struct _frozen {
|
||||||
char *name;
|
char *name;
|
||||||
unsigned char *code;
|
unsigned char *code;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue