Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
11 lines
250 B
Python
Executable File
11 lines
250 B
Python
Executable File
#!/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()
|