Author: Philip Jenvey <pjen...@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, _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit