7eb10c8
diff -up Python-3.2a1/Lib/test/test_imp.py.apply-our-changes-to-expected-shebang Python-3.2a1/Lib/test/test_imp.py
7eb10c8
--- Python-3.2a1/Lib/test/test_imp.py.apply-our-changes-to-expected-shebang	2010-08-02 15:57:49.151002176 -0400
7eb10c8
+++ Python-3.2a1/Lib/test/test_imp.py	2010-08-02 15:58:40.428010729 -0400
a3483f9
@@ -52,7 +52,7 @@ class ImportTests(unittest.TestCase):
a3483f9
         self.assertNotEqual(fp, None)
a3483f9
         self.assertEqual(fp.encoding, "iso-8859-1")
a3483f9
         self.assertEqual(fp.tell(), 0)
7eb10c8
-        self.assertEqual(fp.readline(), '#!/usr/bin/env python3\n')
7eb10c8
+        self.assertEqual(fp.readline(), '#!/usr/bin/python3.2\n')
a3483f9
         fp.close()
a3483f9
 
a3483f9
         fp, filename, info = imp.find_module("tokenize")