Don't try to explicitly set path in runpy package tests (tests were broken on Windows)
diff --git a/Lib/test/test_runpy.py b/Lib/test/test_runpy.py
index 5d8607b..ffd886a 100644
--- a/Lib/test/test_runpy.py
+++ b/Lib/test/test_runpy.py
@@ -101,7 +101,6 @@
if verbose: print " Next level in:", sub_dir
pkg_fname = os.path.join(sub_dir, init_fname)
pkg_file = open(pkg_fname, "w")
- pkg_file.write("__path__ = ['%s']\n" % sub_dir)
pkg_file.close()
if verbose: print " Created:", pkg_fname
mod_fname = os.path.join(sub_dir, test_fname)