Author: Ronan Lamy <[email protected]>
Branch: py3.6
Changeset: r97162:ea03a1e77a76
Date: 2019-08-12 13:42 +0100
http://bitbucket.org/pypy/pypy/changeset/ea03a1e77a76/

Log:    fix translation when both futimens() and utimensat() are defined

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
@@ -1608,6 +1608,7 @@
         mtime_s, mtime_ns = convert_ns(space, args_w[1])
     return now, atime_s, atime_ns, mtime_s, mtime_ns
 
[email protected](1)
 def do_utimens(space, func, arg, utime, *args):
     """Common implementation for futimens/utimensat etc."""
     now, atime_s, atime_ns, mtime_s, mtime_ns = utime
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to