@@ -1697,7 +1697,7 @@ winreg.DisableReflectionKey
1697
1697
1698
1698
Disables registry reflection for 32bit processes running on a 64bit OS.
1699
1699
1700
- Will generally raise NotImplemented if executed on a 32bit OS.
1700
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1701
1701
1702
1702
If the key is not on the reflection list, the function succeeds but has
1703
1703
no effect. Disabling reflection for a key does not affect reflection
@@ -1706,7 +1706,7 @@ of any subkeys.
1706
1706
1707
1707
static PyObject *
1708
1708
winreg_DisableReflectionKey_impl (PyObject * module , HKEY key )
1709
- /*[clinic end generated code: output=830cce504cc764b4 input=a6c9e5ca5410193c ]*/
1709
+ /*[clinic end generated code: output=830cce504cc764b4 input=70bece2dee02e073 ]*/
1710
1710
{
1711
1711
HMODULE hMod ;
1712
1712
typedef LONG (WINAPI * RDRKFunc )(HKEY );
@@ -1742,14 +1742,14 @@ winreg.EnableReflectionKey
1742
1742
1743
1743
Restores registry reflection for the specified disabled key.
1744
1744
1745
- Will generally raise NotImplemented if executed on a 32bit OS.
1745
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1746
1746
Restoring reflection for a key does not affect reflection of any
1747
1747
subkeys.
1748
1748
[clinic start generated code]*/
1749
1749
1750
1750
static PyObject *
1751
1751
winreg_EnableReflectionKey_impl (PyObject * module , HKEY key )
1752
- /*[clinic end generated code: output=86fa1385fdd9ce57 input=7748abbacd1e166a ]*/
1752
+ /*[clinic end generated code: output=86fa1385fdd9ce57 input=eeae770c6eb9f559 ]*/
1753
1753
{
1754
1754
HMODULE hMod ;
1755
1755
typedef LONG (WINAPI * RERKFunc )(HKEY );
@@ -1785,12 +1785,12 @@ winreg.QueryReflectionKey
1785
1785
1786
1786
Returns the reflection state for the specified key as a bool.
1787
1787
1788
- Will generally raise NotImplemented if executed on a 32bit OS.
1788
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1789
1789
[clinic start generated code]*/
1790
1790
1791
1791
static PyObject *
1792
1792
winreg_QueryReflectionKey_impl (PyObject * module , HKEY key )
1793
- /*[clinic end generated code: output=4e774af288c3ebb9 input=9f325eacb5a65d88 ]*/
1793
+ /*[clinic end generated code: output=4e774af288c3ebb9 input=a98fa51d55ade186 ]*/
1794
1794
{
1795
1795
HMODULE hMod ;
1796
1796
typedef LONG (WINAPI * RQRKFunc )(HKEY , BOOL * );
0 commit comments