summaryrefslogtreecommitdiffstats
path: root/Tools/test2to3/maintest.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/test2to3/maintest.py')
-rw-r--r--Tools/test2to3/maintest.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tools/test2to3/maintest.py b/Tools/test2to3/maintest.py
new file mode 100644
index 0000000..036dd4f
--- /dev/null
+++ b/Tools/test2to3/maintest.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python3
+
+# The above line should get replaced with the path to the Python
+# interpreter; the block below should get 2to3-converted.
+
+try:
+ from test2to3.hello import hello
+except ImportError, e:
+ print "Import failed", e
+hello()