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: winreg: implement RegGetValue
Type: enhancement Stage: patch review
Components: Library (Lib) Versions: Python 3.11
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: imba-tjd
Priority: normal Keywords: patch

Created on 2021-11-20 15:43 by imba-tjd, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 29684 open imba-tjd, 2021-11-21 04:21
Messages (1)
msg406663 - (view) Author: Jiuding Tan (imba-tjd) * Date: 2021-11-20 15:43
The RegGetValue() API was introduced in Vista.

It's similar to RegOpenKeyEx() but it's more convenient because you don't need OpenKey() and CloseKey() when using predefined HKEY_* constants.

I think it would be good to implement it.

If so, I have implemented its body based on RegOpenKeyEx(), but I'm new to CPython and need some help.

https://github.com/imba-tjd/cpython/tree/winreg
History
Date User Action Args
2022-04-11 14:59:52adminsetgithub: 90012
2021-11-21 04:21:04imba-tjdsetkeywords: + patch
stage: patch review
pull_requests: + pull_request27922
2021-11-20 15:43:57imba-tjdcreate