1#!/usr/bin/env python3 2 3# The above line should get replaced with the path to the Python 4# interpreter; the block below should get 2to3-converted. 5 6try: 7 from test2to3.hello import hello 8except ImportError, e: 9 print "Import failed", e 10hello() 11