Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r84644:6ef1b14222a4
Date: 2016-05-23 15:05 -0700
http://bitbucket.org/pypy/pypy/changeset/6ef1b14222a4/

Log:    oops

diff --git a/pypy/module/posix/interp_posix.py 
b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -587,7 +587,8 @@
 
     try:
         if (rposix.HAVE_FACCESSAT and
-            dir_fd != DEFAULT_DIR_FD or not follow_symlinks or effective_ids):
+            (dir_fd != DEFAULT_DIR_FD or not follow_symlinks or
+             effective_ids)):
             path = space.fsencode_w(w_path)
             ok = rposix.faccessat(path, mode,
                 dir_fd, effective_ids, follow_symlinks)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to