Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r73490:71b29c6796ae
Date: 2014-09-11 15:14 -0700
http://bitbucket.org/pypy/pypy/changeset/71b29c6796ae/

Log:    2to3

diff --git a/pypy/interpreter/test/test_app_main.py 
b/pypy/interpreter/test/test_app_main.py
--- a/pypy/interpreter/test/test_app_main.py
+++ b/pypy/interpreter/test/test_app_main.py
@@ -1107,7 +1107,7 @@
             assert sys.executable == ''      # not executable!
             assert sys.path == old_sys_path + [self.goal_dir]
 
-            os.chmod(self.fake_exe, 0755)
+            os.chmod(self.fake_exe, 0o755)
             app_main.setup_bootstrap_path(self.fake_exe)
             assert sys.executable == self.fake_exe
             assert self.goal_dir not in sys.path
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to