From 9834a69c18478fdc3b78ba52faabf7c551aef531 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Mon, 6 Oct 2014 21:04:04 +0100 Subject: [PATCH] Fix Python 3 import_packages/relativeimport2 example clean runme3.py files are generated and should not be checked in --- .../python/import_packages/relativeimport2/runme3.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 Examples/python/import_packages/relativeimport2/runme3.py 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")