remove useless assignment

This commit is contained in:
Benjamin Peterson 2010-10-30 23:00:54 +00:00
parent 807a5a1652
commit 1a7127f6df
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class ImportTests(unittest.TestCase):
sys.path.insert(0, os.curdir) sys.path.insert(0, os.curdir)
try: try:
fname = TESTFN + os.extsep + "py" fname = TESTFN + os.extsep + "py"
f = open(fname, 'w').close() open(fname, 'w').close()
os.chmod(fname, (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH | os.chmod(fname, (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH |
stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)) stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH))
__import__(TESTFN) __import__(TESTFN)