[Python-checkins] Add files in tests/test_peg_generator to the install target lists (GH-19723)

Pablo Galindo webhook-mailer at python.org
Mon Apr 27 06:18:27 EDT 2020


https://github.com/python/cpython/commit/4044c843a5c6788b228d9aa38f51676f43b2ae94
commit: 4044c843a5c6788b228d9aa38f51676f43b2ae94
branch: master
author: Pablo Galindo <Pablogsal at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-04-27T11:18:04+01:00
summary:

Add files in tests/test_peg_generator to the install target lists (GH-19723)

Update the "Makefile.pre.in" template and the "PCbuild/lib.pyproj" with the files in "Lib/test/test/test_peg_generator" so they get correctly installed along the rest of the standard library.

files:
M Makefile.pre.in
M PCbuild/lib.pyproj

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 400654718eb07..18fa97bec33d0 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1426,6 +1426,7 @@ LIBSUBDIRS=	tkinter tkinter/test tkinter/test/test_tkinter \
 		ctypes ctypes/test ctypes/macholib \
 		idlelib idlelib/Icons idlelib/idle_test \
 		distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
+		test/test_peg_generator \
 		test/test_tools test/test_warnings test/test_warnings/data \
 		turtledemo \
 		multiprocessing multiprocessing/dummy \
diff --git a/PCbuild/lib.pyproj b/PCbuild/lib.pyproj
index 0237b8cc85593..ee01d109f162d 100644
--- a/PCbuild/lib.pyproj
+++ b/PCbuild/lib.pyproj
@@ -1207,6 +1207,12 @@
     <Compile Include="test\test_pathlib.py" />
     <Compile Include="test\test_pdb.py" />
     <Compile Include="test\test_peepholer.py" />
+    <Compile Include="test\test_peg_generator\__init__.py" />
+    <Compile Include="test\test_peg_generator\__main__.py" />
+    <Compile Include="test\test_peg_generator\ast_dump.py" />
+    <Compile Include="test\test_peg_generator\test_c_parser.py" />
+    <Compile Include="test\test_peg_generator\test_first_sets.py" />
+    <Compile Include="test\test_peg_generator\test_pegen.py" />
     <Compile Include="test\test_pickle.py" />
     <Compile Include="test\test_pickletools.py" />
     <Compile Include="test\test_pipes.py" />
@@ -1787,6 +1793,7 @@
     <Folder Include="test\test_import\data\package" />
     <Folder Include="test\test_import\data\package2" />
     <Folder Include="test\test_json" />
+    <Folder Include="test\test_peg_generator" />
     <Folder Include="test\test_tools" />
     <Folder Include="test\test_warnings" />
     <Folder Include="test\test_warnings\data" />



More information about the Python-checkins mailing list