summaryrefslogtreecommitdiff
path: root/test/modules/pkg1
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules/pkg1')
-rw-r--r--test/modules/pkg1/__init__.py3
-rw-r--r--test/modules/pkg1/__main__.py3
-rw-r--r--test/modules/pkg1/p1a.py5
-rw-r--r--test/modules/pkg1/p1b.py3
-rw-r--r--test/modules/pkg1/p1c.py3
-rw-r--r--test/modules/pkg1/runmod2.py3
-rw-r--r--test/modules/pkg1/sub/__init__.py0
-rw-r--r--test/modules/pkg1/sub/__main__.py3
-rw-r--r--test/modules/pkg1/sub/ps1a.py3
-rw-r--r--test/modules/pkg1/sub/runmod3.py3
10 files changed, 0 insertions, 29 deletions
diff --git a/test/modules/pkg1/__init__.py b/test/modules/pkg1/__init__.py
deleted file mode 100644
index 2dfeb9c1..00000000
--- a/test/modules/pkg1/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# This __init__.py has a module-level docstring, which is counted as a
-# statement.
-"""A simple package for testing with."""
diff --git a/test/modules/pkg1/__main__.py b/test/modules/pkg1/__main__.py
deleted file mode 100644
index 66ce5956..00000000
--- a/test/modules/pkg1/__main__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("pkg1.__main__: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/p1a.py b/test/modules/pkg1/p1a.py
deleted file mode 100644
index be5fcdd3..00000000
--- a/test/modules/pkg1/p1a.py
+++ /dev/null
@@ -1,5 +0,0 @@
-import os, sys
-
-# Invoke functions in os and sys so we can see if we measure code there.
-x = sys.getcheckinterval()
-y = os.getcwd()
diff --git a/test/modules/pkg1/p1b.py b/test/modules/pkg1/p1b.py
deleted file mode 100644
index 59d6fb54..00000000
--- a/test/modules/pkg1/p1b.py
+++ /dev/null
@@ -1,3 +0,0 @@
-x = 1
-y = 2
-z = 3
diff --git a/test/modules/pkg1/p1c.py b/test/modules/pkg1/p1c.py
deleted file mode 100644
index a9aeef04..00000000
--- a/test/modules/pkg1/p1c.py
+++ /dev/null
@@ -1,3 +0,0 @@
-a = 1
-b = 2
-c = 3
diff --git a/test/modules/pkg1/runmod2.py b/test/modules/pkg1/runmod2.py
deleted file mode 100644
index b52964cb..00000000
--- a/test/modules/pkg1/runmod2.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("runmod2: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/sub/__init__.py b/test/modules/pkg1/sub/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/test/modules/pkg1/sub/__init__.py
+++ /dev/null
diff --git a/test/modules/pkg1/sub/__main__.py b/test/modules/pkg1/sub/__main__.py
deleted file mode 100644
index b5be9f1c..00000000
--- a/test/modules/pkg1/sub/__main__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("pkg1.sub.__main__: passed %s" % sys.argv[1])
diff --git a/test/modules/pkg1/sub/ps1a.py b/test/modules/pkg1/sub/ps1a.py
deleted file mode 100644
index 4b6a15cc..00000000
--- a/test/modules/pkg1/sub/ps1a.py
+++ /dev/null
@@ -1,3 +0,0 @@
-d = 1
-e = 2
-f = 3
diff --git a/test/modules/pkg1/sub/runmod3.py b/test/modules/pkg1/sub/runmod3.py
deleted file mode 100644
index 3a1ad155..00000000
--- a/test/modules/pkg1/sub/runmod3.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Used in the tests for run_python_module
-import sys
-print("runmod3: passed %s" % sys.argv[1])