[pypy-commit] pypy py3k: fix, we can't use **kwargs in this case

pjenvey pypy.commits at gmail.com
Thu May 26 21:20:44 EDT 2016


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r84722:97ed514d4cf8
Date: 2016-05-26 18:19 -0700
http://bitbucket.org/pypy/pypy/changeset/97ed514d4cf8/

Log:	fix, we can't use **kwargs in this case

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
@@ -1399,7 +1399,7 @@
             raise oefmt(space.w_NotImplementedError,
                         "utime: unsupported value for 'path'")
         do_utimens(space, rposix.utimensat, path.as_bytes, utime,
-                   dir_fd=dir_fd, follow_symlinks=follow_symlinks)
+                   dir_fd, follow_symlinks)
     elif rposix.HAVE_LUTIMES and not follow_symlinks:
         if path.as_bytes is None:
             raise oefmt(space.w_NotImplementedError,


More information about the pypy-commit mailing list