Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 268e1fbf215fb17e1ebed793190457dab6d182cf authored by Ned Deily on 17 June 2017, 08:48:35 UTC
Version bump to 3.6.2rc1
Tip revision: 268e1fb
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