summaryrefslogtreecommitdiff
path: root/Examples/python/import_packages/relativeimport2/runme3.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/import_packages/relativeimport2/runme3.py')
-rw-r--r--Examples/python/import_packages/relativeimport2/runme3.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Examples/python/import_packages/relativeimport2/runme3.py b/Examples/python/import_packages/relativeimport2/runme3.py
deleted file mode 100644
index 4b0d112cf..000000000
--- a/Examples/python/import_packages/relativeimport2/runme3.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Test import of modules content from within __init__.py
-print("Testing %module(package=...) + python 'import' in __init__.py")
-import sys
-if sys.version_info < (3, 0):
- import py2.pkg2.bar
- print(" Finished importing py2.pkg2.bar")
-else:
- import py3.pkg2.bar
- print(" Finished importing py3.pkg2.bar")