diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
commit | 3bbc62e9c25d4c006cd21d6b1314ccf0ba211382 (patch) | |
tree | 0b1a6d87c3bd250a62235f9df6ed9fffddbbabae /Modules/config.c.in | |
parent | 437a0e60baa6eabc2c853bee7ce1543481db8ca7 (diff) | |
download | cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.zip cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.gz cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.bz2 |
Another bulky set of minor changes.
Note addition of gethostbyaddr() and improved repr() for sockets,
renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index fb8b49b..2be3e37 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -182,6 +182,7 @@ getpythonpath() /* -- ADDMODULE MARKER 1 -- */ extern void initmarshal(); +extern void initimp(); struct { char *name; @@ -193,6 +194,9 @@ struct { /* This module "lives in" with marshal.c */ {"marshal", initmarshal}, + /* This lives it with import.c */ + {"imp", initimp}, + /* These entries are here for sys.builtin_module_names */ {"__main__", NULL}, {"__builtin__", NULL}, |