annotate CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/lib/python3.8/config-3.8-x86_64-linux-gnu/config.c @ 68:5028fdace37b

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