mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +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 int PyImport_AppendInittab Py_PROTO((char *name, void (*initfunc)()));
|
||||
extern int PyImport_ExtendInittab Py_PROTO((struct _inittab *newtab));
|
||||
|
||||
struct _frozen {
|
||||
char *name;
|
||||
unsigned char *code;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue