diff options
Diffstat (limited to 'tests/modules/pkg2')
| -rw-r--r-- | tests/modules/pkg2/__init__.py | 2 | ||||
| -rw-r--r-- | tests/modules/pkg2/p2a.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg2/p2b.py | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/tests/modules/pkg2/__init__.py b/tests/modules/pkg2/__init__.py new file mode 100644 index 00000000..090efbf5 --- /dev/null +++ b/tests/modules/pkg2/__init__.py @@ -0,0 +1,2 @@ +# This is an __init__.py file, with no executable statements in it. +# This comment shouldn't confuse the parser. diff --git a/tests/modules/pkg2/p2a.py b/tests/modules/pkg2/p2a.py new file mode 100644 index 00000000..b606711d --- /dev/null +++ b/tests/modules/pkg2/p2a.py @@ -0,0 +1,3 @@ +q = 1 +r = 1 +s = 1 diff --git a/tests/modules/pkg2/p2b.py b/tests/modules/pkg2/p2b.py new file mode 100644 index 00000000..7a34e2c6 --- /dev/null +++ b/tests/modules/pkg2/p2b.py @@ -0,0 +1,3 @@ +t = 1 +u = 1 +v = 1 |
