mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
#3247 Get rid of Py_FindMethod; use tp_members instead.
Otherwise dir(_sre.SRE_Match) returns an empty list. First step: handle most occurrences, remove tp_getattr and fill the tp_methods and tp_members slots. Add some test about attribute access.
This commit is contained in:
parent
4118174315
commit
e43d33a4db
13 changed files with 388 additions and 329 deletions
|
@ -29,6 +29,7 @@ class WinregTests(unittest.TestCase):
|
|||
# Set the default value for this key.
|
||||
SetValue(root_key, test_key_name, REG_SZ, "Default value")
|
||||
key = CreateKey(root_key, test_key_name)
|
||||
self.assert_(key.handle != 0)
|
||||
# Create a sub-key
|
||||
sub_key = CreateKey(key, subkeystr)
|
||||
# Give the sub-key some named values
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue