Skip to content

Commit 90b4d18

Browse files
committed
Sorting
1 parent 794075f commit 90b4d18

File tree

5 files changed

+50
-50
lines changed

5 files changed

+50
-50
lines changed

Modules/Setup

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,10 @@ PYTHONPATH=$(COREPYTHONPATH)
284284

285285
#*shared*
286286
#_ctypes_test _ctypes/_ctypes_test.c
287+
#_remotedebugging _remotedebuggingmodule.c
287288
#_testcapi _testcapimodule.c
288289
#_testimportmultiple _testimportmultiple.c
289290
#_testmultiphase _testmultiphase.c
290-
#_remotedebugging _remotedebuggingmodule.c
291291
#_testsinglephase _testsinglephase.c
292292

293293
# ---

Modules/Setup.stdlib.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
# Modules that should always be present (POSIX and Windows):
3434
@MODULE_ARRAY_TRUE@array arraymodule.c
3535
@MODULE__ASYNCIO_TRUE@_asyncio _asynciomodule.c
36-
@MODULE__REMOTEDEBUGGING_TRUE@_remotedebugging _remotedebuggingmodule.c
3736
@MODULE__BISECT_TRUE@_bisect _bisectmodule.c
3837
@MODULE__CSV_TRUE@_csv _csv.c
3938
@MODULE__HEAPQ_TRUE@_heapq _heapqmodule.c
@@ -42,6 +41,7 @@
4241
@MODULE__PICKLE_TRUE@_pickle _pickle.c
4342
@MODULE__QUEUE_TRUE@_queue _queuemodule.c
4443
@MODULE__RANDOM_TRUE@_random _randommodule.c
44+
@MODULE__REMOTEDEBUGGING_TRUE@_remotedebugging _remotedebuggingmodule.c
4545
@MODULE__STRUCT_TRUE@_struct _struct.c
4646

4747
# build supports subinterpreters

PCbuild/pcbuild.proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<!-- pyshellext.dll -->
6767
<Projects Include="pyshellext.vcxproj" />
6868
<!-- Extension modules -->
69-
<ExtensionModules Include="_asyncio;_remotedebugging;_zoneinfo;_decimal;_elementtree;_multiprocessing;_overlapped;pyexpat;_queue;select;unicodedata;winsound;_uuid;_wmi" />
69+
<ExtensionModules Include="_asyncio;_decimal;_elementtree;_multiprocessing;_overlapped;pyexpat;_queue;_remotedebugging;select;unicodedata;winsound;_uuid;_wmi;_zoneinfo" />
7070
<ExtensionModules Include="_ctypes" Condition="$(IncludeCTypes)" />
7171
<!-- Extension modules that require external sources -->
7272
<ExternalModules Include="_bz2;_lzma;_sqlite3" />

configure

+46-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -8077,6 +8077,7 @@ PY_STDLIB_MOD([_gdbm],
80778077
PY_STDLIB_MOD([readline],
80788078
[], [test "$with_readline" != "no"],
80798079
[$READLINE_CFLAGS], [$READLINE_LIBS])
8080+
PY_STDLIB_MOD([_remotedebugging], [test "$TEST_MODULES" = yes])
80808081
PY_STDLIB_MOD([_sqlite3],
80818082
[test "$have_sqlite3" = "yes"],
80828083
[test "$have_supported_sqlite3" = "yes"],
@@ -8119,7 +8120,6 @@ PY_STDLIB_MOD([_testbuffer], [test "$TEST_MODULES" = yes])
81198120
PY_STDLIB_MOD([_testimportmultiple], [test "$TEST_MODULES" = yes], [test "$ac_cv_func_dlopen" = yes])
81208121
PY_STDLIB_MOD([_testmultiphase], [test "$TEST_MODULES" = yes], [test "$ac_cv_func_dlopen" = yes])
81218122
PY_STDLIB_MOD([_testsinglephase], [test "$TEST_MODULES" = yes], [test "$ac_cv_func_dlopen" = yes])
8122-
PY_STDLIB_MOD([_remotedebugging], [test "$TEST_MODULES" = yes])
81238123
PY_STDLIB_MOD([xxsubtype], [test "$TEST_MODULES" = yes])
81248124
PY_STDLIB_MOD([_xxtestfuzz], [test "$TEST_MODULES" = yes])
81258125
PY_STDLIB_MOD([_ctypes_test],

0 commit comments

Comments
 (0)