blob: 036dd4f00ce24bc599c72f35568339b251d70542 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#!/usr/bin/env python3
Martin v. Löwis6825e172008-12-01 04:44:45 +00002
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()