jpayne@68: /* Generated automatically from /home/conda/feedstock_root/build_artifacts/python_1580307476742/work/Modules/config.c.in by makesetup. */ jpayne@68: /* -*- C -*- *********************************************** jpayne@68: Copyright (c) 2000, BeOpen.com. jpayne@68: Copyright (c) 1995-2000, Corporation for National Research Initiatives. jpayne@68: Copyright (c) 1990-1995, Stichting Mathematisch Centrum. jpayne@68: All rights reserved. jpayne@68: jpayne@68: See the file "Misc/COPYRIGHT" for information on usage and jpayne@68: redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. jpayne@68: ******************************************************************/ jpayne@68: jpayne@68: /* Module configuration */ jpayne@68: jpayne@68: /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */ jpayne@68: jpayne@68: /* This file contains the table of built-in modules. jpayne@68: See create_builtin() in import.c. */ jpayne@68: jpayne@68: #include "Python.h" jpayne@68: jpayne@68: #ifdef __cplusplus jpayne@68: extern "C" { jpayne@68: #endif jpayne@68: jpayne@68: jpayne@68: extern PyObject* PyInit_posix(void); jpayne@68: extern PyObject* PyInit_errno(void); jpayne@68: extern PyObject* PyInit_pwd(void); jpayne@68: extern PyObject* PyInit__sre(void); jpayne@68: extern PyObject* PyInit__codecs(void); jpayne@68: extern PyObject* PyInit__weakref(void); jpayne@68: extern PyObject* PyInit__functools(void); jpayne@68: extern PyObject* PyInit__operator(void); jpayne@68: extern PyObject* PyInit__collections(void); jpayne@68: extern PyObject* PyInit__abc(void); jpayne@68: extern PyObject* PyInit_itertools(void); jpayne@68: extern PyObject* PyInit_atexit(void); jpayne@68: extern PyObject* PyInit__signal(void); jpayne@68: extern PyObject* PyInit__stat(void); jpayne@68: extern PyObject* PyInit_time(void); jpayne@68: extern PyObject* PyInit__thread(void); jpayne@68: extern PyObject* PyInit__locale(void); jpayne@68: extern PyObject* PyInit__io(void); jpayne@68: extern PyObject* PyInit_faulthandler(void); jpayne@68: extern PyObject* PyInit__tracemalloc(void); jpayne@68: extern PyObject* PyInit__symtable(void); jpayne@68: extern PyObject* PyInit_xxsubtype(void); jpayne@68: jpayne@68: /* -- ADDMODULE MARKER 1 -- */ jpayne@68: jpayne@68: extern PyObject* PyMarshal_Init(void); jpayne@68: extern PyObject* PyInit__imp(void); jpayne@68: extern PyObject* PyInit_gc(void); jpayne@68: extern PyObject* PyInit__ast(void); jpayne@68: extern PyObject* _PyWarnings_Init(void); jpayne@68: extern PyObject* PyInit__string(void); jpayne@68: jpayne@68: struct _inittab _PyImport_Inittab[] = { jpayne@68: jpayne@68: {"posix", PyInit_posix}, jpayne@68: {"errno", PyInit_errno}, jpayne@68: {"pwd", PyInit_pwd}, jpayne@68: {"_sre", PyInit__sre}, jpayne@68: {"_codecs", PyInit__codecs}, jpayne@68: {"_weakref", PyInit__weakref}, jpayne@68: {"_functools", PyInit__functools}, jpayne@68: {"_operator", PyInit__operator}, jpayne@68: {"_collections", PyInit__collections}, jpayne@68: {"_abc", PyInit__abc}, jpayne@68: {"itertools", PyInit_itertools}, jpayne@68: {"atexit", PyInit_atexit}, jpayne@68: {"_signal", PyInit__signal}, jpayne@68: {"_stat", PyInit__stat}, jpayne@68: {"time", PyInit_time}, jpayne@68: {"_thread", PyInit__thread}, jpayne@68: {"_locale", PyInit__locale}, jpayne@68: {"_io", PyInit__io}, jpayne@68: {"faulthandler", PyInit_faulthandler}, jpayne@68: {"_tracemalloc", PyInit__tracemalloc}, jpayne@68: {"_symtable", PyInit__symtable}, jpayne@68: {"xxsubtype", PyInit_xxsubtype}, jpayne@68: jpayne@68: /* -- ADDMODULE MARKER 2 -- */ jpayne@68: jpayne@68: /* This module lives in marshal.c */ jpayne@68: {"marshal", PyMarshal_Init}, jpayne@68: jpayne@68: /* This lives in import.c */ jpayne@68: {"_imp", PyInit__imp}, jpayne@68: jpayne@68: /* This lives in Python/Python-ast.c */ jpayne@68: {"_ast", PyInit__ast}, jpayne@68: jpayne@68: /* These entries are here for sys.builtin_module_names */ jpayne@68: {"builtins", NULL}, jpayne@68: {"sys", NULL}, jpayne@68: jpayne@68: /* This lives in gcmodule.c */ jpayne@68: {"gc", PyInit_gc}, jpayne@68: jpayne@68: /* This lives in _warnings.c */ jpayne@68: {"_warnings", _PyWarnings_Init}, jpayne@68: jpayne@68: /* This lives in Objects/unicodeobject.c */ jpayne@68: {"_string", PyInit__string}, jpayne@68: jpayne@68: /* Sentinel */ jpayne@68: {0, 0} jpayne@68: }; jpayne@68: jpayne@68: jpayne@68: #ifdef __cplusplus jpayne@68: } jpayne@68: #endif