Kaydet (Commit) cdb34837 authored tarafından Jack Jansen's avatar Jack Jansen

- Added pyexpat.

- Renamed socket to _socket.
üst e4cd2f28
......@@ -49,7 +49,7 @@ extern void initpwd();
extern void initgrp();
extern void initcrypt();
extern void initselect();
extern void initsocket();
extern void init_socket();
extern void initaudioop();
extern void initimageop();
extern void initrgbimg();
......@@ -141,7 +141,7 @@ extern void initimgop();
extern void init_tkinter();
#endif
#ifdef USE_GUSI
extern void initsocket();
extern void init_socket();
extern void initselect();
#endif
#ifdef USE_WASTE
......@@ -156,6 +156,9 @@ extern void initzlib();
#ifdef WITH_THREAD
extern void initthread();
#endif
#ifdef USE_PYEXPAT
extern void initpyexpat();
#endif
extern void initcPickle();
extern void initcStringIO();
......@@ -261,7 +264,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_tkinter", init_tkinter},
#endif
#ifdef USE_GUSI
{"socket", initsocket},
{"_socket", init_socket},
{"select", initselect},
#endif
#ifdef USE_WASTE
......@@ -275,6 +278,9 @@ struct _inittab _PyImport_Inittab[] = {
#endif
#ifdef WITH_THREAD
{"thread", initthread},
#endif
#ifdef USE_PYEXPAT
{"pyexpat", initpyexpat},
#endif
{"cPickle", initcPickle},
{"cStringIO", initcStringIO},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment