mirror of
https://github.com/python/cpython.git
synced 2025-11-11 19:12:05 +00:00
bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error (GH-25775)
(cherry picked from commit a29a7b9b78)
Co-authored-by: Shreyan Avigyan <shreyan.avigyan@gmail.com>
This commit is contained in:
parent
ecb16d5d63
commit
3939a4b7d9
3 changed files with 64 additions and 33 deletions
|
|
@ -113,7 +113,6 @@ def _write_test_data(self, root_key, subkeystr="sub_key",
|
|||
"does not close the actual key!")
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
def _read_test_data(self, root_key, subkeystr="sub_key", OpenKey=OpenKey):
|
||||
# Check we can get default value for this key.
|
||||
val = QueryValue(root_key, test_key_name)
|
||||
|
|
@ -340,6 +339,23 @@ def test_setvalueex_value_range(self):
|
|||
finally:
|
||||
DeleteKey(HKEY_CURRENT_USER, test_key_name)
|
||||
|
||||
def test_setvalueex_negative_one_check(self):
|
||||
# Test for Issue #43984, check -1 was not set by SetValueEx.
|
||||
# Py2Reg, which gets called by SetValueEx, wasn't checking return
|
||||
# value by PyLong_AsUnsignedLong, thus setting -1 as value in the registry.
|
||||
# The implementation now checks PyLong_AsUnsignedLong return value to assure
|
||||
# the value set was not -1.
|
||||
try:
|
||||
with CreateKey(HKEY_CURRENT_USER, test_key_name) as ck:
|
||||
with self.assertRaises(OverflowError):
|
||||
SetValueEx(ck, "test_name_dword", None, REG_DWORD, -1)
|
||||
SetValueEx(ck, "test_name_qword", None, REG_QWORD, -1)
|
||||
self.assertRaises(FileNotFoundError, QueryValueEx, ck, "test_name_dword")
|
||||
self.assertRaises(FileNotFoundError, QueryValueEx, ck, "test_name_qword")
|
||||
|
||||
finally:
|
||||
DeleteKey(HKEY_CURRENT_USER, test_key_name)
|
||||
|
||||
def test_queryvalueex_return_value(self):
|
||||
# Test for Issue #16759, return unsigned int from QueryValueEx.
|
||||
# Reg2Py, which gets called by QueryValueEx, was returning a value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue