Changeset 391 for python/trunk/PC/os2emx/config.c
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/PC/os2emx/config.c
r2 r391 103 103 struct _inittab _PyImport_Inittab[] = { 104 104 105 106 105 {"os2", initos2}, 106 {"signal", initsignal}, 107 107 #ifdef WITH_THREAD 108 108 {"thread", initthread}, 109 109 #endif 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 110 {"_codecs", init_codecs}, 111 {"_csv", init_csv}, 112 {"_locale", init_locale}, 113 {"_random", init_random}, 114 {"_sre", init_sre}, 115 {"_symtable", init_symtable}, 116 {"_weakref", init_weakref}, 117 {"array", initarray}, 118 {"binascii", initbinascii}, 119 {"cPickle", initcPickle}, 120 {"cStringIO", initcStringIO}, 121 {"_collections", init_collections}, 122 {"cmath", initcmath}, 123 {"datetime", initdatetime}, 124 {"dl", initdl}, 125 {"errno", initerrno}, 126 {"fcntl", initfcntl}, 127 {"_fileio", init_fileio}, 128 {"_functools", init_functools}, 129 {"_heapq", init_heapq}, 130 {"imageop", initimageop}, 131 {"itertools", inititertools}, 132 {"math", initmath}, 133 {"_md5", init_md5}, 134 {"operator", initoperator}, 135 {"_sha", init_sha}, 136 {"_sha256", init_sha256}, 137 {"_sha512", init_sha512}, 138 {"strop", initstrop}, 139 {"_struct", init_struct}, 140 {"termios", inittermios}, 141 {"time", inittime}, 142 {"timing", inittiming}, 143 {"xxsubtype", initxxsubtype}, 144 {"zipimport", initzipimport}, 145 145 #if !HAVE_DYNAMIC_LOADING 146 147 148 149 150 151 152 153 154 155 156 157 146 {"_curses", init_curses}, 147 {"_curses_panel", init_curses_panel}, 148 {"_hotshot", init_hotshot}, 149 {"_testcapi", init_testcapi}, 150 {"bsddb185", initbsddb185}, 151 {"bz2", initbz2}, 152 {"fpectl", initfpectl}, 153 {"fpetest", initfpetest}, 154 {"parser", initparser}, 155 {"pwd", initpwd}, 156 {"unicodedata", initunicodedata}, 157 {"zlib", initzlib}, 158 158 #ifdef USE_SOCKET 159 160 159 {"_socket", init_socket}, 160 {"select", initselect}, 161 161 #endif 162 162 #endif 163 163 /* -- ADDMODULE MARKER 2 -- */ 164 164 165 166 165 /* This module "lives in" with marshal.c */ 166 {"marshal", PyMarshal_Init}, 167 167 168 169 168 /* This lives it with import.c */ 169 {"imp", initimp}, 170 170 171 172 173 174 175 171 /* These entries are here for sys.builtin_module_names */ 172 {"__main__", NULL}, 173 {"__builtin__", NULL}, 174 {"sys", NULL}, 175 {"exceptions", NULL}, 176 176 177 178 177 /* This lives in gcmodule.c */ 178 {"gc", initgc}, 179 179 180 181 180 /* Sentinel */ 181 {0, 0} 182 182 };
Note:
See TracChangeset
for help on using the changeset viewer.