diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-04-18 10:51:14 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-04-18 10:51:14 (GMT) |
commit | 69206528231d5d07565cbbabc0c030046d654f54 (patch) | |
tree | 9cacd3abfe30e1ff00730fe2ab03f979fbe2a5a4 /PC | |
parent | 2548c730c17d766ca04b2bf633552655f7f96cdf (diff) | |
download | cpython-69206528231d5d07565cbbabc0c030046d654f54.zip cpython-69206528231d5d07565cbbabc0c030046d654f54.tar.gz cpython-69206528231d5d07565cbbabc0c030046d654f54.tar.bz2 |
Patch #714957: Explain ADDMODULE MARKER.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index 717f267..ea65e91 100644 --- a/PC/config.c +++ b/PC/config.c @@ -47,7 +47,7 @@ extern void initzipimport(void); extern void init_random(void); extern void inititertools(void); -/* XXX tim: what's the purpose of ADDMODULE MARKER? */ +/* tools/freeze/makeconfig.py marker for additional "extern" */ /* -- ADDMODULE MARKER 1 -- */ extern void PyMarshal_Init(void); @@ -103,7 +103,7 @@ struct _inittab _PyImport_Inittab[] = { {"xxsubtype", initxxsubtype}, {"zipimport", initzipimport}, -/* XXX tim: what's the purpose of ADDMODULE MARKER? */ +/* tools/freeze/makeconfig.py marker for additional "_inittab" entries */ /* -- ADDMODULE MARKER 2 -- */ /* This module "lives in" with marshal.c */ |