Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r63621:01e9f6182ee0
Date: 2013-04-25 18:27 -0700
http://bitbucket.org/pypy/pypy/changeset/01e9f6182ee0/
Log: use the expected keyword arg names
diff --git a/pypy/module/_winreg/interp_winreg.py
b/pypy/module/_winreg/interp_winreg.py
--- a/pypy/module/_winreg/interp_winreg.py
+++ b/pypy/module/_winreg/interp_winreg.py
@@ -714,8 +714,8 @@
raise OperationError(space.w_NotImplementedError, space.wrap(
"not implemented on this platform"))
-@unwrap_spec(subkey=str)
-def DeleteKeyEx(space, w_key, subkey):
+@unwrap_spec(sub_key=str, reserved=int, access=rffi.r_uint)
+def DeleteKeyEx(space, w_key, sub_key, reserved=0,
access=rwinreg.KEY_WOW64_64KEY):
"""DeleteKeyEx(key, sub_key, sam, res) - Deletes the specified key.
key is an already open key, or any one of the predefined HKEY_* constants.
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit