diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-11-30 01:57:18 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-11-30 01:57:18 (GMT) |
commit | 469d5bb0b4ca8008f271c4425236292b8a55afd6 (patch) | |
tree | eb145e05d1731d593f83aec77161a03ede4825bb /Modules | |
parent | 6b3f3f2861fdb86f0065b7d797ea76098797e06c (diff) | |
download | cpython-469d5bb0b4ca8008f271c4425236292b8a55afd6.zip cpython-469d5bb0b4ca8008f271c4425236292b8a55afd6.tar.gz cpython-469d5bb0b4ca8008f271c4425236292b8a55afd6.tar.bz2 |
Clarify two comments
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/config.c.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index da7cabb..0d5e8b0 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -27,10 +27,10 @@ struct _inittab _PyImport_Inittab[] = { /* -- ADDMODULE MARKER 2 -- */ - /* This module "lives in" with marshal.c */ + /* This module lives in marshal.c */ {"marshal", PyMarshal_Init}, - /* This lives it with import.c */ + /* This lives in import.c */ {"imp", initimp}, /* These entries are here for sys.builtin_module_names */ |