Changeset 388 for python/vendor/current/Modules/config.c.in
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Modules/config.c.in
r2 r388 35 35 /* -- ADDMODULE MARKER 2 -- */ 36 36 37 38 37 /* This module lives in marshal.c */ 38 {"marshal", PyMarshal_Init}, 39 39 40 41 40 /* This lives in import.c */ 41 {"imp", initimp}, 42 42 43 44 43 /* This lives in Python/Python-ast.c */ 44 {"_ast", init_ast}, 45 45 46 47 48 49 50 46 /* These entries are here for sys.builtin_module_names */ 47 {"__main__", NULL}, 48 {"__builtin__", NULL}, 49 {"sys", NULL}, 50 {"exceptions", NULL}, 51 51 52 53 52 /* This lives in gcmodule.c */ 53 {"gc", initgc}, 54 54 55 56 55 /* This lives in _warnings.c */ 56 {"_warnings", _PyWarnings_Init}, 57 57 58 59 58 /* Sentinel */ 59 {0, 0} 60 60 }; 61 61 … … 64 64 } 65 65 #endif 66
Note:
See TracChangeset
for help on using the changeset viewer.