summaryrefslogtreecommitdiffstats
path: root/Lib/test/namespace_pkgs
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2014-03-29 21:57:44 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2014-03-29 21:57:44 (GMT)
commitc4bbd7a49228efa15a423747b48334df48eb922d (patch)
treee931f366736ba54e998ae699c2e474341796e92f /Lib/test/namespace_pkgs
parent762bee299e25ad1feec5152abd3af9c53a4fb84a (diff)
downloadcpython-c4bbd7a49228efa15a423747b48334df48eb922d.zip
cpython-c4bbd7a49228efa15a423747b48334df48eb922d.tar.gz
cpython-c4bbd7a49228efa15a423747b48334df48eb922d.tar.bz2
Issue #21097: Move test_namespace_pkgs into test_importlib.
Diffstat (limited to 'Lib/test/namespace_pkgs')
-rw-r--r--Lib/test/namespace_pkgs/both_portions/foo/one.py1
-rw-r--r--Lib/test/namespace_pkgs/both_portions/foo/two.py1
-rw-r--r--Lib/test/namespace_pkgs/missing_directory.zipbin515 -> 0 bytes
-rw-r--r--Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py1
-rw-r--r--Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty0
-rw-r--r--Lib/test/namespace_pkgs/nested_portion1.zipbin556 -> 0 bytes
-rw-r--r--Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py0
-rw-r--r--Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py1
-rw-r--r--Lib/test/namespace_pkgs/portion1/foo/one.py1
-rw-r--r--Lib/test/namespace_pkgs/portion2/foo/two.py1
-rw-r--r--Lib/test/namespace_pkgs/project1/parent/child/one.py1
-rw-r--r--Lib/test/namespace_pkgs/project2/parent/child/two.py1
-rw-r--r--Lib/test/namespace_pkgs/project3/parent/child/three.py1
-rw-r--r--Lib/test/namespace_pkgs/top_level_portion1.zipbin332 -> 0 bytes
14 files changed, 0 insertions, 9 deletions
diff --git a/Lib/test/namespace_pkgs/both_portions/foo/one.py b/Lib/test/namespace_pkgs/both_portions/foo/one.py
deleted file mode 100644
index 3080f6f..0000000
--- a/Lib/test/namespace_pkgs/both_portions/foo/one.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'both_portions foo one'
diff --git a/Lib/test/namespace_pkgs/both_portions/foo/two.py b/Lib/test/namespace_pkgs/both_portions/foo/two.py
deleted file mode 100644
index 4131d3d..0000000
--- a/Lib/test/namespace_pkgs/both_portions/foo/two.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'both_portions foo two'
diff --git a/Lib/test/namespace_pkgs/missing_directory.zip b/Lib/test/namespace_pkgs/missing_directory.zip
deleted file mode 100644
index 836a910..0000000
--- a/Lib/test/namespace_pkgs/missing_directory.zip
+++ /dev/null
Binary files differ
diff --git a/Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py b/Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py
deleted file mode 100644
index 43cbedb..0000000
--- a/Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'in module'
diff --git a/Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty b/Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty
deleted file mode 100644
index e69de29..0000000
--- a/Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty
+++ /dev/null
diff --git a/Lib/test/namespace_pkgs/nested_portion1.zip b/Lib/test/namespace_pkgs/nested_portion1.zip
deleted file mode 100644
index 8d22406..0000000
--- a/Lib/test/namespace_pkgs/nested_portion1.zip
+++ /dev/null
Binary files differ
diff --git a/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py b/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py
+++ /dev/null
diff --git a/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py b/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py
deleted file mode 100644
index d8f5c83..0000000
--- a/Lib/test/namespace_pkgs/not_a_namespace_pkg/foo/one.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'portion1 foo one'
diff --git a/Lib/test/namespace_pkgs/portion1/foo/one.py b/Lib/test/namespace_pkgs/portion1/foo/one.py
deleted file mode 100644
index d8f5c83..0000000
--- a/Lib/test/namespace_pkgs/portion1/foo/one.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'portion1 foo one'
diff --git a/Lib/test/namespace_pkgs/portion2/foo/two.py b/Lib/test/namespace_pkgs/portion2/foo/two.py
deleted file mode 100644
index d092e1e..0000000
--- a/Lib/test/namespace_pkgs/portion2/foo/two.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'portion2 foo two'
diff --git a/Lib/test/namespace_pkgs/project1/parent/child/one.py b/Lib/test/namespace_pkgs/project1/parent/child/one.py
deleted file mode 100644
index 2776fcd..0000000
--- a/Lib/test/namespace_pkgs/project1/parent/child/one.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'parent child one'
diff --git a/Lib/test/namespace_pkgs/project2/parent/child/two.py b/Lib/test/namespace_pkgs/project2/parent/child/two.py
deleted file mode 100644
index 8b037bc..0000000
--- a/Lib/test/namespace_pkgs/project2/parent/child/two.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'parent child two'
diff --git a/Lib/test/namespace_pkgs/project3/parent/child/three.py b/Lib/test/namespace_pkgs/project3/parent/child/three.py
deleted file mode 100644
index f8abfe1..0000000
--- a/Lib/test/namespace_pkgs/project3/parent/child/three.py
+++ /dev/null
@@ -1 +0,0 @@
-attr = 'parent child three'
diff --git a/Lib/test/namespace_pkgs/top_level_portion1.zip b/Lib/test/namespace_pkgs/top_level_portion1.zip
deleted file mode 100644
index 3b866c9..0000000
--- a/Lib/test/namespace_pkgs/top_level_portion1.zip
+++ /dev/null
Binary files differ