File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ LIBEXPAT_HEADERS= \
586
586
# Default target
587
587
all: @DEF_MAKE_ALL_RULE@
588
588
build_all: check-clean-src $(BUILDPYTHON) platform oldsharedmods sharedmods \
589
- gdbhooks Programs/_testembed python-config
589
+ gdbhooks python-config
590
590
build_wasm: check-clean-src $(BUILDPYTHON) platform oldsharedmods python-config
591
591
592
592
# Check that the source is clean when building out of source.
@@ -1368,7 +1368,7 @@ regen-keyword:
1368
1368
$(UPDATE_FILE) $(srcdir)/Lib/keyword.py $(srcdir)/Lib/keyword.py.new
1369
1369
1370
1370
.PHONY: regen-stdlib-module-names
1371
- regen-stdlib-module-names: all Programs/_testembed
1371
+ regen-stdlib-module-names: all
1372
1372
# Regenerate Python/stdlib_module_names.h
1373
1373
# using Tools/scripts/generate_stdlib_module_names.py
1374
1374
$(RUNSHARED) ./$(BUILDPYTHON) \
@@ -1936,8 +1936,7 @@ LIBSUBDIRS= asyncio \
1936
1936
wsgiref \
1937
1937
$(XMLLIBSUBDIRS) \
1938
1938
xmlrpc \
1939
- zoneinfo \
1940
- __phello__
1939
+ zoneinfo
1941
1940
TESTSUBDIRS= ctypes/test \
1942
1941
distutils/tests \
1943
1942
idlelib/idle_test \
Original file line number Diff line number Diff line change @@ -1346,7 +1346,7 @@ def detect_modules(self):
1346
1346
# These are extensions are required to bootstrap the interpreter or
1347
1347
# build process.
1348
1348
self .detect_simple_extensions ()
1349
- self .detect_test_extensions ()
1349
+ # self.detect_test_extensions()
1350
1350
self .detect_readline_curses ()
1351
1351
self .detect_crypt ()
1352
1352
self .detect_openssl_hashlib ()
@@ -1367,8 +1367,8 @@ def detect_modules(self):
1367
1367
# Uncomment the next line if you want to play with xxmodule.c
1368
1368
# self.add(Extension('xx', ['xxmodule.c']))
1369
1369
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']))
1372
1372
1373
1373
def detect_tkinter (self ):
1374
1374
self .addext (Extension ('_tkinter' , ['_tkinter.c' , 'tkappinit.c' ]))
You can’t perform that action at this time.
0 commit comments