mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Modified for GUSI
This commit is contained in:
parent
b852b74c71
commit
c743c8d166
5 changed files with 76 additions and 6 deletions
|
@ -122,6 +122,10 @@ extern void initimgop();
|
|||
#ifdef USE_TK
|
||||
extern void init_tkinter();
|
||||
#endif
|
||||
#ifdef USE_GUSI
|
||||
extern void initsocket();
|
||||
extern void initselect();
|
||||
#endif
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
||||
extern void PyMarshal_Init();
|
||||
|
@ -204,6 +208,10 @@ struct {
|
|||
#ifdef USE_TK
|
||||
{"_tkinter", init_tkinter},
|
||||
#endif
|
||||
#ifdef USE_GUSI
|
||||
{"socket", initsocket},
|
||||
{"select", initselect},
|
||||
#endif
|
||||
|
||||
/* -- ADDMODULE MARKER 2 -- */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue