This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Correct docs for default access argument for DeleteKeyEx
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: zach.ware Nosy List: brian.curtin, docs@python, jfoo, python-dev, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2014-01-19 08:06 by jfoo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
winreg.DeleteKeyEx.docs.patch jfoo, 2014-01-19 08:06 review
Messages (3)
msg208462 - (view) Author: Justin Foo (jfoo) * Date: 2014-01-19 08:06
The default access for winreg.DeleteKeyEx is winreg.KEY_WOW64_64KEY (as per the function signature). This the documentation for Python 2.7 has this correct.

Reference: http://hg.python.org/cpython/file/2e32462e4832/PC/winreg.c#l1089
msg208690 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-01-21 19:50
New changeset da35a4e724e5 by Zachary Ware in branch '3.3':
Issue #20301: Mention the correct KEY_* value as the default
http://hg.python.org/cpython/rev/da35a4e724e5

New changeset 3baee069c5ff by Zachary Ware in branch 'default':
Issue #20301: Merge with 3.3
http://hg.python.org/cpython/rev/3baee069c5ff
msg208691 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2014-01-21 19:51
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:57adminsetgithub: 64500
2014-01-21 19:51:05zach.waresetstatus: open -> closed
messages: + msg208691

assignee: docs@python -> zach.ware
resolution: fixed
stage: patch review -> resolved
2014-01-21 19:50:24python-devsetnosy: + python-dev
messages: + msg208690
2014-01-20 15:35:54zach.waresetnosy: + zach.ware
2014-01-19 08:08:26ezio.melottisetnosy: + tim.golden, brian.curtin

type: enhancement
stage: patch review
2014-01-19 08:06:03jfoocreate