[Python-checkins] bpo-30814, bpo-30876: Add new import test files to projects. (#2851)

Serhiy Storchaka webhook-mailer at python.org
Thu Jul 27 05:24:40 EDT 2017


https://github.com/python/cpython/commit/d5ed47dea25e04a3a144eddf99a4ac4a29242dbc
commit: d5ed47dea25e04a3a144eddf99a4ac4a29242dbc
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-07-27T12:24:36+03:00
summary:

bpo-30814, bpo-30876: Add new import test files to projects. (#2851)

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

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 5602c165463..98934916578 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1204,6 +1204,8 @@ LIBSUBDIRS=	tkinter tkinter/test tkinter/test/test_tkinter \
 		test/test_import/data \
 		test/test_import/data/circular_imports \
 		test/test_import/data/circular_imports/subpkg \
+		test/test_import/data/package \
+		test/test_import/data/package2 \
 		test/test_importlib/namespace_pkgs \
 		test/test_importlib/namespace_pkgs/both_portions \
 		test/test_importlib/namespace_pkgs/both_portions/foo \
diff --git a/PCbuild/lib.pyproj b/PCbuild/lib.pyproj
index 73927b33f72..273d5ef7529 100644
--- a/PCbuild/lib.pyproj
+++ b/PCbuild/lib.pyproj
@@ -1127,6 +1127,10 @@
     <Compile Include="test\test_import\data\circular_imports\subpkg\subpackage2.py" />
     <Compile Include="test\test_import\data\circular_imports\subpkg\util.py" />
     <Compile Include="test\test_import\data\circular_imports\util.py" />
+    <Compile Include="test\test_import\data\package\__init__.py" />
+    <Compile Include="test\test_import\data\package\submodule.py" />
+    <Compile Include="test\test_import\data\package2\submodule1.py" />
+    <Compile Include="test\test_import\data\package2\submodule2.py" />
     <Compile Include="test\test_import\__init__.py" />
     <Compile Include="test\test_import\__main__.py" />
     <Compile Include="test\test_index.py" />
@@ -1786,6 +1790,8 @@
     <Folder Include="test\test_import\data\" />
     <Folder Include="test\test_import\data\circular_imports" />
     <Folder Include="test\test_import\data\circular_imports\subpkg" />
+    <Folder Include="test\test_import\data\package" />
+    <Folder Include="test\test_import\data\package2" />
     <Folder Include="test\test_json" />
     <Folder Include="test\test_tools" />
     <Folder Include="test\test_warnings" />



More information about the Python-checkins mailing list