Skip to content

Commit 1321ab6

Browse files
committed
add 0.0.20210401053451
1 parent a9c6863 commit 1321ab6

File tree

5 files changed

+91
-94
lines changed

5 files changed

+91
-94
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ let package = Package(
1515
]),
1616
],
1717
targets: [
18-
.binaryTarget(name: "libpython3", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.1-20210331/libpython3.xcframework.zip", checksum: "f45a4efeefad5d282c7eb4ac1d7252e8ad023991e151b48b5ca131989a30a2c3"),
19-
.binaryTarget(name: "libssl", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.1-20210331/libssl.xcframework.zip", checksum: "18d6754f053c5923fb9ef7c23339e1e2ab7cd3b6463aab24a05ee70999cbf90e"),
20-
.binaryTarget(name: "libcrypto", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.1-20210331/libcrypto.xcframework.zip", checksum: "4db7e03555a66e1141246bbb7c5c0bd7b8aeec3c67aed3c05fcea28c1e263ebb"),
21-
.binaryTarget(name: "libffi", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.1-20210331/libffi.xcframework.zip", checksum: "207daa9ba776076bce888cfe1fe9f0bd76aafe15a6f8b4e0bc74bd08254a206b"),
18+
.binaryTarget(name: "libpython3", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.20210401053451/libpython3.xcframework.zip", checksum: "7e9660ddf41efacb2b9f95cd6c209cdf31431f9fb3ee233aa8af669d7d5d12bd"),
19+
.binaryTarget(name: "libssl", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.20210401053451/libssl.xcframework.zip", checksum: "5a6486ec34138210fe481817f0a4a050a426e5d11cf9534e87470b6f6a76947a"),
20+
.binaryTarget(name: "libcrypto", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.20210401053451/libcrypto.xcframework.zip", checksum: "c28a11461f6560b22c3bd2bf7cd63987217ebdbceffa51a8664dec951559736f"),
21+
.binaryTarget(name: "libffi", url: "https://github.com/kewlbear/Python-iOS/releases/download/0.0.20210401053451/libffi.xcframework.zip", checksum: "f5ccfbb717bd4297a6fa226a44cf2afebce2ce5241a90ce618b773827da2d737"),
2222
.target(name: "LinkPython",
2323
dependencies: [
2424
"libpython3",

Sources/PythonSupport/lib/python3.8/config-3.8-darwin/Makefile

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ MODLIBS= $(LOCALMODLIBS) $(BASEMODLIBS)
3030
VERSION= 3.8
3131
srcdir= .
3232

33-
abs_srcdir= /Users/anchangbeom/Projects/Public/kivy-ios/build/python3/x86_64/Python-3.8.2
34-
abs_builddir= /Users/anchangbeom/Projects/Public/kivy-ios/build/python3/x86_64/Python-3.8.2
33+
abs_srcdir= /Users/runner/work/Python-iOS/Python-iOS/kivy-ios/build/python3/x86_64/Python-3.8.2
34+
abs_builddir= /Users/runner/work/Python-iOS/Python-iOS/kivy-ios/build/python3/x86_64/Python-3.8.2
3535

3636

37-
CC= /var/folders/yv/5c6zzgq93zz0zl49m8hvmdh00000gn/T/tmpx7so9jeb
38-
CXX= /var/folders/yv/5c6zzgq93zz0zl49m8hvmdh00000gn/T/tmp0cjk0pya
37+
CC= /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpjilj92k9
38+
CXX= /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp2r2m_yhe
3939
MAINCC= $(CC)
4040
LINKCC= $(PURIFY) $(MAINCC)
41-
AR= /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
41+
AR= /Applications/Xcode_12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
4242
READELF= :
4343
SOABI= cpython-38-darwin
4444
LDVERSION= $(VERSION)$(ABIFLAGS)
@@ -65,23 +65,23 @@ SHELL= /bin/sh
6565
LN= ln
6666

6767
# Portable install script (configure doesn't always guess right)
68-
INSTALL= /usr/local/bin/ginstall -c
68+
INSTALL= /usr/bin/install -c
6969
INSTALL_PROGRAM=${INSTALL}
7070
INSTALL_SCRIPT= ${INSTALL}
7171
INSTALL_DATA= ${INSTALL} -m 644
7272
# Shared libraries must be installed with executable mode on some systems;
7373
# rather than figuring out exactly which, we always give them executable mode.
7474
INSTALL_SHARED= ${INSTALL} -m 755
7575

76-
MKDIR_P= /usr/local/bin/gmkdir -p
76+
MKDIR_P= ./install-sh -c -d
7777

7878
MAKESETUP= $(srcdir)/Modules/makesetup
7979

8080
# Compiler options
8181
OPT= -DNDEBUG -g -fwrapv -O3 -Wall
8282
BASECFLAGS= -Wno-unused-result -Wsign-compare -Wunreachable-code
8383
BASECPPFLAGS=
84-
CONFIGURE_CFLAGS= -O3 -miphonesimulator-version-min=8.0 -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/hostlibffi -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/ffi -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/openssl -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk
84+
CONFIGURE_CFLAGS= -O3 -miphonesimulator-version-min=8.0 -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/hostlibffi -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/ffi -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/openssl -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64 --sysroot=/Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk
8585
# CFLAGS_NODIST is used for building the interpreter and stdlib C extensions.
8686
# Use it when a compiler flag should _not_ be part of the distutils CFLAGS
8787
# once Python is installed (Issue #21121).
@@ -91,7 +91,7 @@ CONFIGURE_CFLAGS_NODIST= -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-m
9191
# once Python is installed (bpo-35257)
9292
CONFIGURE_LDFLAGS_NODIST=
9393
CONFIGURE_CPPFLAGS=
94-
CONFIGURE_LDFLAGS= -arch x86_64 -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/lib -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/lib -miphonesimulator-version-min=8.0 -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libffi.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libffi.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libssl.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libcrypto.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libpython3.8.xcframework/ios-arm64_x86_64-simulator -undefined dynamic_lookup
94+
CONFIGURE_LDFLAGS= -arch x86_64 -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/lib -L/Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/lib -miphonesimulator-version-min=8.0 -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libffi.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libffi.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libssl.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libcrypto.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libpython3.8.xcframework/ios-x86_64-simulator -undefined dynamic_lookup
9595
# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
9696
# command line to append to these values without stomping the pre-set
9797
# values.
@@ -130,7 +130,7 @@ MULTIARCH= darwin
130130
MULTIARCH_CPPFLAGS = -DMULTIARCH=\"darwin\"
131131

132132
# Install prefix for architecture-independent files
133-
prefix= /Users/anchangbeom/Projects/Public/kivy-ios/dist/root/python3
133+
prefix= /Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/root/python3
134134

135135
# Install prefix for architecture-dependent files
136136
exec_prefix= ${prefix}
@@ -204,7 +204,7 @@ EXEMODE= 755
204204
FILEMODE= 644
205205

206206
# configure script arguments
207-
CONFIG_ARGS= 'CC=/var/folders/yv/5c6zzgq93zz0zl49m8hvmdh00000gn/T/tmpx7so9jeb' 'LD=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld' 'CFLAGS=-O3 -miphonesimulator-version-min=8.0 -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/hostlibffi -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/ffi -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64/openssl -I/Users/anchangbeom/Projects/Public/kivy-ios/dist/include/x86_64 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk' 'LDFLAGS=-arch x86_64 -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/lib -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/lib -miphonesimulator-version-min=8.0 -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libffi.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libffi.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libssl.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libcrypto.xcframework/ios-arm64_x86_64-simulator -L/Users/anchangbeom/Projects/Public/kivy-ios/dist/frameworks/libpython3.8.xcframework/ios-arm64_x86_64-simulator -undefined dynamic_lookup' 'ac_cv_file__dev_ptmx=yes' 'ac_cv_file__dev_ptc=no' 'ac_cv_little_endian_double=yes' 'ac_cv_func_memrchr=no' 'ac_cv_func_getentropy=no' 'ac_cv_func_getresuid=no' 'ac_cv_func_getresgid=no' 'ac_cv_func_setresgid=no' 'ac_cv_func_setresuid=no' 'ac_cv_func_plock=no' 'ac_cv_func_dup3=no' 'ac_cv_func_pipe2=no' 'ac_cv_func_preadv=no' 'ac_cv_func_pwritev=no' 'ac_cv_func_preadv2=no' 'ac_cv_func_pwritev2=no' 'ac_cv_func_mkfifoat=no' 'ac_cv_func_mknodat=no' 'ac_cv_func_posix_fadvise=no' 'ac_cv_func_posix_fallocate=no' 'ac_cv_func_sigwaitinfo=no' 'ac_cv_func_sigtimedwait=no' 'ac_cv_func_clock_settime=no' 'ac_cv_func_pthread_getcpuclockid=no' 'ac_cv_func_sched_setscheduler=no' 'ac_cv_func_sched_setparam=no' 'ac_cv_func_clock_gettime=no' '--host=x86_64-apple-ios' '--build=x86_64-apple-darwin' '--prefix=/Users/anchangbeom/Projects/Public/kivy-ios/dist/root/python3' '--without-ensurepip' '--with-system-ffi' '--enable-ipv6' 'PYTHON_FOR_BUILD=_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) /Users/anchangbeom/Projects/Public/kivy-ios/dist/hostpython3/bin/python' 'build_alias=x86_64-apple-darwin' 'host_alias=x86_64-apple-ios'
207+
CONFIG_ARGS= 'CC=/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpjilj92k9' 'LD=/Applications/Xcode_12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld' 'CFLAGS=-O3 -miphonesimulator-version-min=8.0 -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/hostlibffi -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/ffi -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64/openssl -I/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/include/x86_64 --sysroot=/Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk' 'LDFLAGS=-arch x86_64 -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/lib -L/Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/lib -miphonesimulator-version-min=8.0 -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libffi.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libffi.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libssl.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libcrypto.xcframework/ios-x86_64-simulator -L/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/frameworks/libpython3.8.xcframework/ios-x86_64-simulator -undefined dynamic_lookup' 'ac_cv_file__dev_ptmx=yes' 'ac_cv_file__dev_ptc=no' 'ac_cv_little_endian_double=yes' 'ac_cv_func_memrchr=no' 'ac_cv_func_getentropy=no' 'ac_cv_func_getresuid=no' 'ac_cv_func_getresgid=no' 'ac_cv_func_setresgid=no' 'ac_cv_func_setresuid=no' 'ac_cv_func_plock=no' 'ac_cv_func_dup3=no' 'ac_cv_func_pipe2=no' 'ac_cv_func_preadv=no' 'ac_cv_func_pwritev=no' 'ac_cv_func_preadv2=no' 'ac_cv_func_pwritev2=no' 'ac_cv_func_mkfifoat=no' 'ac_cv_func_mknodat=no' 'ac_cv_func_posix_fadvise=no' 'ac_cv_func_posix_fallocate=no' 'ac_cv_func_sigwaitinfo=no' 'ac_cv_func_sigtimedwait=no' 'ac_cv_func_clock_settime=no' 'ac_cv_func_pthread_getcpuclockid=no' 'ac_cv_func_sched_setscheduler=no' 'ac_cv_func_sched_setparam=no' 'ac_cv_func_clock_gettime=no' '--host=x86_64-apple-ios' '--build=x86_64-apple-darwin' '--prefix=/Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/root/python3' '--without-ensurepip' '--with-system-ffi' '--enable-ipv6' 'PYTHON_FOR_BUILD=_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) /Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/hostpython3/bin/python' 'build_alias=x86_64-apple-darwin' 'host_alias=x86_64-apple-ios'
208208

209209

210210
# Subdirectories with code
@@ -246,7 +246,7 @@ BUILDPYTHON= python$(BUILDEXE)
246246

247247
PYTHON_FOR_REGEN=python3.8
248248
UPDATE_FILE=python3.8 $(srcdir)/Tools/scripts/update_file.py
249-
PYTHON_FOR_BUILD=_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) /Users/anchangbeom/Projects/Public/kivy-ios/dist/hostpython3/bin/python
249+
PYTHON_FOR_BUILD=_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) /Users/runner/work/Python-iOS/Python-iOS/kivy-ios/dist/hostpython3/bin/python
250250
_PYTHON_HOST_PLATFORM=ios-x86_64
251251
BUILD_GNU_TYPE= x86_64-apple-darwin
252252
HOST_GNU_TYPE= x86_64-apple-ios
@@ -281,7 +281,6 @@ DESTLIB=$(LIBDEST)
281281
_sqlite3 -I$(srcdir)/Modules/_sqlite -DMODULE_NAME='"sqlite3"' _sqlite/cache.c _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c
282282

283283

284-
285284
##########################################################################
286285
# Modules
287286
MODULE_OBJS= \
@@ -303,7 +302,7 @@ IO_OBJS= \
303302

304303
##########################################################################
305304

306-
LIBFFI_INCLUDEDIR= /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/ffi
305+
LIBFFI_INCLUDEDIR= /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/ffi
307306

308307
##########################################################################
309308
# Parser

Sources/PythonSupport/lib/python3.8/config-3.8-darwin/config.c

Lines changed: 73 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ extern PyObject* PyInit_faulthandler(void);
9696
extern PyObject* PyInit__tracemalloc(void);
9797
extern PyObject* PyInit__symtable(void);
9898
extern PyObject* PyInit_xxsubtype(void);
99-
10099
/* -- ADDMODULE MARKER 1 -- */
101100

102101
extern PyObject* PyMarshal_Init(void);
@@ -108,80 +107,79 @@ extern PyObject* PyInit__string(void);
108107

109108
struct _inittab _PyImport_Inittab[] = {
110109

111-
{"_asyncio", PyInit__asyncio},
112-
{"_bisect", PyInit__bisect},
113-
{"_blake2", PyInit__blake2},
114-
{"_codecs_cn", PyInit__codecs_cn},
115-
{"_codecs_hk", PyInit__codecs_hk},
116-
{"_codecs_iso2022", PyInit__codecs_iso2022},
117-
{"_codecs_jp", PyInit__codecs_jp},
118-
{"_codecs_kr", PyInit__codecs_kr},
119-
{"_codecs_tw", PyInit__codecs_tw},
120-
{"_contextvars", PyInit__contextvars},
121-
{"_crypt", PyInit__crypt},
122-
{"_csv", PyInit__csv},
123-
{"_datetime", PyInit__datetime},
124-
{"_elementtree", PyInit__elementtree},
125-
{"_hashlib", PyInit__hashlib},
126-
{"_heapq", PyInit__heapq},
127-
{"_json", PyInit__json},
128-
{"_lsprof", PyInit__lsprof},
129-
{"_md5", PyInit__md5},
130-
{"_multibytecodec", PyInit__multibytecodec},
131-
{"_opcode", PyInit__opcode},
132-
{"_queue", PyInit__queue},
133-
{"_pickle", PyInit__pickle},
134-
{"_random", PyInit__random},
135-
{"_sha1", PyInit__sha1},
136-
{"_sha3", PyInit__sha3},
137-
{"_sha256", PyInit__sha256},
138-
{"_sha512", PyInit__sha512},
139-
{"_socket", PyInit__socket},
140-
{"_ssl", PyInit__ssl},
141-
{"_struct", PyInit__struct},
142-
{"array", PyInit_array},
143-
{"audioop", PyInit_audioop},
144-
{"binascii", PyInit_binascii},
145-
{"cmath", PyInit_cmath},
146-
{"fcntl", PyInit_fcntl},
147-
{"grp", PyInit_grp},
148-
{"math", PyInit_math},
149-
{"parser", PyInit_parser},
150-
{"pyexpat", PyInit_pyexpat},
151-
{"resource", PyInit_resource},
152-
{"select", PyInit_select},
153-
{"syslog", PyInit_syslog},
154-
{"termios", PyInit_termios},
155-
{"unicodedata", PyInit_unicodedata},
156-
{"zlib", PyInit_zlib},
157-
{"_ctypes_test", PyInit__ctypes_test},
158-
{"_testbuffer", PyInit__testbuffer},
159-
{"_testinternalcapi", PyInit__testinternalcapi},
160-
{"_testimportmultiple", PyInit__testimportmultiple},
161-
{"_ctypes", PyInit__ctypes},
162-
{"posix", PyInit_posix},
163-
{"errno", PyInit_errno},
164-
{"pwd", PyInit_pwd},
165-
{"_sre", PyInit__sre},
166-
{"_codecs", PyInit__codecs},
167-
{"_weakref", PyInit__weakref},
168-
{"_functools", PyInit__functools},
169-
{"_operator", PyInit__operator},
170-
{"_collections", PyInit__collections},
171-
{"_abc", PyInit__abc},
172-
{"itertools", PyInit_itertools},
173-
{"atexit", PyInit_atexit},
174-
{"_signal", PyInit__signal},
175-
{"_stat", PyInit__stat},
176-
{"time", PyInit_time},
177-
{"_thread", PyInit__thread},
178-
{"_locale", PyInit__locale},
179-
{"_io", PyInit__io},
180-
{"faulthandler", PyInit_faulthandler},
181-
{"_tracemalloc", PyInit__tracemalloc},
182-
{"_symtable", PyInit__symtable},
183-
{"xxsubtype", PyInit_xxsubtype},
184-
110+
{"_asyncio", PyInit__asyncio},
111+
{"_bisect", PyInit__bisect},
112+
{"_blake2", PyInit__blake2},
113+
{"_codecs_cn", PyInit__codecs_cn},
114+
{"_codecs_hk", PyInit__codecs_hk},
115+
{"_codecs_iso2022", PyInit__codecs_iso2022},
116+
{"_codecs_jp", PyInit__codecs_jp},
117+
{"_codecs_kr", PyInit__codecs_kr},
118+
{"_codecs_tw", PyInit__codecs_tw},
119+
{"_contextvars", PyInit__contextvars},
120+
{"_crypt", PyInit__crypt},
121+
{"_csv", PyInit__csv},
122+
{"_datetime", PyInit__datetime},
123+
{"_elementtree", PyInit__elementtree},
124+
{"_hashlib", PyInit__hashlib},
125+
{"_heapq", PyInit__heapq},
126+
{"_json", PyInit__json},
127+
{"_lsprof", PyInit__lsprof},
128+
{"_md5", PyInit__md5},
129+
{"_multibytecodec", PyInit__multibytecodec},
130+
{"_opcode", PyInit__opcode},
131+
{"_queue", PyInit__queue},
132+
{"_pickle", PyInit__pickle},
133+
{"_random", PyInit__random},
134+
{"_sha1", PyInit__sha1},
135+
{"_sha3", PyInit__sha3},
136+
{"_sha256", PyInit__sha256},
137+
{"_sha512", PyInit__sha512},
138+
{"_socket", PyInit__socket},
139+
{"_ssl", PyInit__ssl},
140+
{"_struct", PyInit__struct},
141+
{"array", PyInit_array},
142+
{"audioop", PyInit_audioop},
143+
{"binascii", PyInit_binascii},
144+
{"cmath", PyInit_cmath},
145+
{"fcntl", PyInit_fcntl},
146+
{"grp", PyInit_grp},
147+
{"math", PyInit_math},
148+
{"parser", PyInit_parser},
149+
{"pyexpat", PyInit_pyexpat},
150+
{"resource", PyInit_resource},
151+
{"select", PyInit_select},
152+
{"syslog", PyInit_syslog},
153+
{"termios", PyInit_termios},
154+
{"unicodedata", PyInit_unicodedata},
155+
{"zlib", PyInit_zlib},
156+
{"_ctypes_test", PyInit__ctypes_test},
157+
{"_testbuffer", PyInit__testbuffer},
158+
{"_testinternalcapi", PyInit__testinternalcapi},
159+
{"_testimportmultiple", PyInit__testimportmultiple},
160+
{"_ctypes", PyInit__ctypes},
161+
{"posix", PyInit_posix},
162+
{"errno", PyInit_errno},
163+
{"pwd", PyInit_pwd},
164+
{"_sre", PyInit__sre},
165+
{"_codecs", PyInit__codecs},
166+
{"_weakref", PyInit__weakref},
167+
{"_functools", PyInit__functools},
168+
{"_operator", PyInit__operator},
169+
{"_collections", PyInit__collections},
170+
{"_abc", PyInit__abc},
171+
{"itertools", PyInit_itertools},
172+
{"atexit", PyInit_atexit},
173+
{"_signal", PyInit__signal},
174+
{"_stat", PyInit__stat},
175+
{"time", PyInit_time},
176+
{"_thread", PyInit__thread},
177+
{"_locale", PyInit__locale},
178+
{"_io", PyInit__io},
179+
{"faulthandler", PyInit_faulthandler},
180+
{"_tracemalloc", PyInit__tracemalloc},
181+
{"_symtable", PyInit__symtable},
182+
{"xxsubtype", PyInit_xxsubtype},
185183
/* -- ADDMODULE MARKER 2 -- */
186184

187185
/* This module lives in marshal.c */

0 commit comments

Comments
 (0)