Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/PC/os2emx/config.c

    r2 r391  
    103103struct _inittab _PyImport_Inittab[] = {
    104104
    105         {"os2", initos2},
    106         {"signal", initsignal},
     105    {"os2", initos2},
     106    {"signal", initsignal},
    107107#ifdef WITH_THREAD
    108         {"thread", initthread},
     108    {"thread", initthread},
    109109#endif
    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},
     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},
    145145#if !HAVE_DYNAMIC_LOADING
    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},
     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},
    158158#ifdef USE_SOCKET
    159         {"_socket", init_socket},
    160         {"select", initselect},
     159    {"_socket", init_socket},
     160    {"select", initselect},
    161161#endif
    162162#endif
    163163/* -- ADDMODULE MARKER 2 -- */
    164164
    165         /* This module "lives in" with marshal.c */
    166         {"marshal", PyMarshal_Init},
     165    /* This module "lives in" with marshal.c */
     166    {"marshal", PyMarshal_Init},
    167167
    168         /* This lives it with import.c */
    169         {"imp", initimp},
     168    /* This lives it with import.c */
     169    {"imp", initimp},
    170170
    171         /* These entries are here for sys.builtin_module_names */
    172         {"__main__", NULL},
    173         {"__builtin__", NULL},
    174         {"sys", NULL},
    175         {"exceptions", NULL},
     171    /* These entries are here for sys.builtin_module_names */
     172    {"__main__", NULL},
     173    {"__builtin__", NULL},
     174    {"sys", NULL},
     175    {"exceptions", NULL},
    176176
    177         /* This lives in gcmodule.c */
    178         {"gc", initgc},
     177    /* This lives in gcmodule.c */
     178    {"gc", initgc},
    179179
    180         /* Sentinel */
    181         {0, 0}
     180    /* Sentinel */
     181    {0, 0}
    182182};
Note: See TracChangeset for help on using the changeset viewer.