Fix Python 3 import_packages/relativeimport2 example clean

runme3.py files are generated and should not be checked in
This commit is contained in:
William S Fulton 2014-10-06 21:04:04 +01:00
commit 9834a69c18

View file

@ -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")