Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Modules/config.c.in

    r2 r388  
    3535/* -- ADDMODULE MARKER 2 -- */
    3636
    37         /* This module lives in marshal.c */
    38         {"marshal", PyMarshal_Init},
     37    /* This module lives in marshal.c */
     38    {"marshal", PyMarshal_Init},
    3939
    40         /* This lives in import.c */
    41         {"imp", initimp},
     40    /* This lives in import.c */
     41    {"imp", initimp},
    4242
    43         /* This lives in Python/Python-ast.c */
    44         {"_ast", init_ast},
     43    /* This lives in Python/Python-ast.c */
     44    {"_ast", init_ast},
    4545
    46         /* These entries are here for sys.builtin_module_names */
    47         {"__main__", NULL},
    48         {"__builtin__", NULL},
    49         {"sys", NULL},
    50         {"exceptions", NULL},
     46    /* These entries are here for sys.builtin_module_names */
     47    {"__main__", NULL},
     48    {"__builtin__", NULL},
     49    {"sys", NULL},
     50    {"exceptions", NULL},
    5151
    52         /* This lives in gcmodule.c */
    53         {"gc", initgc},
     52    /* This lives in gcmodule.c */
     53    {"gc", initgc},
    5454
    55         /* This lives in _warnings.c */
    56         {"_warnings", _PyWarnings_Init},
     55    /* This lives in _warnings.c */
     56    {"_warnings", _PyWarnings_Init},
    5757
    58         /* Sentinel */
    59         {0, 0}
     58    /* Sentinel */
     59    {0, 0}
    6060};
    6161
     
    6464}
    6565#endif
    66 
Note: See TracChangeset for help on using the changeset viewer.