Skip to content

Commit efc093a

Browse files
committed
Remove test extensions.
1 parent 19f4f74 commit efc093a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Makefile.pre.in

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ LIBEXPAT_HEADERS= \
586586
# Default target
587587
all: @DEF_MAKE_ALL_RULE@
588588
build_all: check-clean-src $(BUILDPYTHON) platform oldsharedmods sharedmods \
589-
gdbhooks Programs/_testembed python-config
589+
gdbhooks python-config
590590
build_wasm: check-clean-src $(BUILDPYTHON) platform oldsharedmods python-config
591591

592592
# Check that the source is clean when building out of source.
@@ -1368,7 +1368,7 @@ regen-keyword:
13681368
$(UPDATE_FILE) $(srcdir)/Lib/keyword.py $(srcdir)/Lib/keyword.py.new
13691369

13701370
.PHONY: regen-stdlib-module-names
1371-
regen-stdlib-module-names: all Programs/_testembed
1371+
regen-stdlib-module-names: all
13721372
# Regenerate Python/stdlib_module_names.h
13731373
# using Tools/scripts/generate_stdlib_module_names.py
13741374
$(RUNSHARED) ./$(BUILDPYTHON) \
@@ -1936,8 +1936,7 @@ LIBSUBDIRS= asyncio \
19361936
wsgiref \
19371937
$(XMLLIBSUBDIRS) \
19381938
xmlrpc \
1939-
zoneinfo \
1940-
__phello__
1939+
zoneinfo
19411940
TESTSUBDIRS= ctypes/test \
19421941
distutils/tests \
19431942
idlelib/idle_test \

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ def detect_modules(self):
13461346
# These are extensions are required to bootstrap the interpreter or
13471347
# build process.
13481348
self.detect_simple_extensions()
1349-
self.detect_test_extensions()
1349+
#self.detect_test_extensions()
13501350
self.detect_readline_curses()
13511351
self.detect_crypt()
13521352
self.detect_openssl_hashlib()
@@ -1367,8 +1367,8 @@ def detect_modules(self):
13671367
# Uncomment the next line if you want to play with xxmodule.c
13681368
# self.add(Extension('xx', ['xxmodule.c']))
13691369

1370-
self.addext(Extension('xxlimited', ['xxlimited.c']))
1371-
self.addext(Extension('xxlimited_35', ['xxlimited_35.c']))
1370+
#self.addext(Extension('xxlimited', ['xxlimited.c']))
1371+
#self.addext(Extension('xxlimited_35', ['xxlimited_35.c']))
13721372

13731373
def detect_tkinter(self):
13741374
self.addext(Extension('_tkinter', ['_tkinter.c', 'tkappinit.c']))

0 commit comments

Comments
 (0)