[issue45854] winreg: implement RegGetValue

2021-11-20 Thread Jiuding Tan
Change by Jiuding Tan <109224...@qq.com>: -- keywords: +patch pull_requests: +27922 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29684 ___ Python tracker __

[issue45854] winreg: implement RegGetValue

2021-11-20 Thread 谭九鼎
New submission from 谭九鼎 <109224...@qq.com>: 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 im