Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: e054f452bd9118def58c18aa295662c9845e1c89 authored by Georg Brandl on 29 September 2012, 07:44:17 UTC
Fix test_sys.test_implementation for final releases.
Tip revision: e054f45
maintest.py
#!/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()
back to top