[issue20301] Correct docs for default access argument for DeleteKeyEx

2014-01-21 Thread Zachary Ware
Zachary Ware added the comment: Fixed, thanks for the report! -- assignee: docs@python -> zach.ware resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue20301] Correct docs for default access argument for DeleteKeyEx

2014-01-21 Thread Roundup Robot
Roundup Robot added the comment: 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 htt

[issue20301] Correct docs for default access argument for DeleteKeyEx

2014-01-20 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue20301] Correct docs for default access argument for DeleteKeyEx

2014-01-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +brian.curtin, tim.golden stage: -> patch review type: -> enhancement ___ Python tracker ___ ___

[issue20301] Correct docs for default access argument for DeleteKeyEx

2014-01-19 Thread Justin Foo
New submission from Justin Foo: 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 -- assignee: docs@pyt