config.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* Generated automatically from ../Python-3.5.2/Modules/config.c.in by makesetup. */
  2. /* -*- C -*- ***********************************************
  3. Copyright (c) 2000, BeOpen.com.
  4. Copyright (c) 1995-2000, Corporation for National Research Initiatives.
  5. Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
  6. All rights reserved.
  7. See the file "Misc/COPYRIGHT" for information on usage and
  8. redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9. ******************************************************************/
  10. /* Module configuration */
  11. /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
  12. /* This file contains the table of built-in modules.
  13. See create_builtin() in import.c. */
  14. #include "Python.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. extern PyObject* PyInit__thread(void);
  19. extern PyObject* PyInit__signal(void);
  20. extern PyObject* PyInit_posix(void);
  21. extern PyObject* PyInit_errno(void);
  22. extern PyObject* PyInit_pwd(void);
  23. extern PyObject* PyInit__sre(void);
  24. extern PyObject* PyInit__codecs(void);
  25. extern PyObject* PyInit__weakref(void);
  26. extern PyObject* PyInit__functools(void);
  27. extern PyObject* PyInit__operator(void);
  28. extern PyObject* PyInit__collections(void);
  29. extern PyObject* PyInit_itertools(void);
  30. extern PyObject* PyInit_atexit(void);
  31. extern PyObject* PyInit__stat(void);
  32. extern PyObject* PyInit_time(void);
  33. extern PyObject* PyInit__locale(void);
  34. extern PyObject* PyInit__io(void);
  35. extern PyObject* PyInit_zipimport(void);
  36. extern PyObject* PyInit_faulthandler(void);
  37. extern PyObject* PyInit__tracemalloc(void);
  38. extern PyObject* PyInit__symtable(void);
  39. extern PyObject* PyInit_xxsubtype(void);
  40. /* -- ADDMODULE MARKER 1 -- */
  41. extern PyObject* PyMarshal_Init(void);
  42. extern PyObject* PyInit_imp(void);
  43. extern PyObject* PyInit_gc(void);
  44. extern PyObject* PyInit__ast(void);
  45. extern PyObject* _PyWarnings_Init(void);
  46. extern PyObject* PyInit__string(void);
  47. struct _inittab _PyImport_Inittab[] = {
  48. {"_thread", PyInit__thread},
  49. {"_signal", PyInit__signal},
  50. {"posix", PyInit_posix},
  51. {"errno", PyInit_errno},
  52. {"pwd", PyInit_pwd},
  53. {"_sre", PyInit__sre},
  54. {"_codecs", PyInit__codecs},
  55. {"_weakref", PyInit__weakref},
  56. {"_functools", PyInit__functools},
  57. {"_operator", PyInit__operator},
  58. {"_collections", PyInit__collections},
  59. {"itertools", PyInit_itertools},
  60. {"atexit", PyInit_atexit},
  61. {"_stat", PyInit__stat},
  62. {"time", PyInit_time},
  63. {"_locale", PyInit__locale},
  64. {"_io", PyInit__io},
  65. {"zipimport", PyInit_zipimport},
  66. {"faulthandler", PyInit_faulthandler},
  67. {"_tracemalloc", PyInit__tracemalloc},
  68. {"_symtable", PyInit__symtable},
  69. {"xxsubtype", PyInit_xxsubtype},
  70. /* -- ADDMODULE MARKER 2 -- */
  71. /* This module lives in marshal.c */
  72. {"marshal", PyMarshal_Init},
  73. /* This lives in import.c */
  74. {"_imp", PyInit_imp},
  75. /* This lives in Python/Python-ast.c */
  76. {"_ast", PyInit__ast},
  77. /* These entries are here for sys.builtin_module_names */
  78. {"builtins", NULL},
  79. {"sys", NULL},
  80. /* This lives in gcmodule.c */
  81. {"gc", PyInit_gc},
  82. /* This lives in _warnings.c */
  83. {"_warnings", _PyWarnings_Init},
  84. /* This lives in Objects/unicodeobject.c */
  85. {"_string", PyInit__string},
  86. /* Sentinel */
  87. {0, 0}
  88. };
  89. #ifdef __cplusplus
  90. }
  91. #endif