aboutsummaryrefslogtreecommitdiff
path: root/tests/testdata/python3/data/appl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/python3/data/appl')
-rw-r--r--tests/testdata/python3/data/appl/__init__.py3
-rw-r--r--tests/testdata/python3/data/appl/myConnection.py11
2 files changed, 14 insertions, 0 deletions
diff --git a/tests/testdata/python3/data/appl/__init__.py b/tests/testdata/python3/data/appl/__init__.py
new file mode 100644
index 00000000..d652ffd9
--- /dev/null
+++ b/tests/testdata/python3/data/appl/__init__.py
@@ -0,0 +1,3 @@
+"""
+Init
+"""
diff --git a/tests/testdata/python3/data/appl/myConnection.py b/tests/testdata/python3/data/appl/myConnection.py
new file mode 100644
index 00000000..49269534
--- /dev/null
+++ b/tests/testdata/python3/data/appl/myConnection.py
@@ -0,0 +1,11 @@
+from data import SSL1
+class MyConnection(SSL1.Connection):
+
+ """An SSL connection."""
+
+ def __init__(self, dummy):
+ print('MyConnection init')
+
+if __name__ == '__main__':
+ myConnection = MyConnection(' ')
+ input('Press Enter to continue...')