@@ -1702,7 +1702,7 @@ winreg.DisableReflectionKey
1702
1702
1703
1703
Disables registry reflection for 32bit processes running on a 64bit OS.
1704
1704
1705
- Will generally raise NotImplemented if executed on a 32bit OS.
1705
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1706
1706
1707
1707
If the key is not on the reflection list, the function succeeds but has
1708
1708
no effect. Disabling reflection for a key does not affect reflection
@@ -1711,7 +1711,7 @@ of any subkeys.
1711
1711
1712
1712
static PyObject *
1713
1713
winreg_DisableReflectionKey_impl (PyObject * module , HKEY key )
1714
- /*[clinic end generated code: output=830cce504cc764b4 input=a6c9e5ca5410193c ]*/
1714
+ /*[clinic end generated code: output=830cce504cc764b4 input=70bece2dee02e073 ]*/
1715
1715
{
1716
1716
HMODULE hMod ;
1717
1717
typedef LONG (WINAPI * RDRKFunc )(HKEY );
@@ -1749,14 +1749,14 @@ winreg.EnableReflectionKey
1749
1749
1750
1750
Restores registry reflection for the specified disabled key.
1751
1751
1752
- Will generally raise NotImplemented if executed on a 32bit OS.
1752
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1753
1753
Restoring reflection for a key does not affect reflection of any
1754
1754
subkeys.
1755
1755
[clinic start generated code]*/
1756
1756
1757
1757
static PyObject *
1758
1758
winreg_EnableReflectionKey_impl (PyObject * module , HKEY key )
1759
- /*[clinic end generated code: output=86fa1385fdd9ce57 input=7748abbacd1e166a ]*/
1759
+ /*[clinic end generated code: output=86fa1385fdd9ce57 input=eeae770c6eb9f559 ]*/
1760
1760
{
1761
1761
HMODULE hMod ;
1762
1762
typedef LONG (WINAPI * RERKFunc )(HKEY );
@@ -1794,12 +1794,12 @@ winreg.QueryReflectionKey
1794
1794
1795
1795
Returns the reflection state for the specified key as a bool.
1796
1796<
7639
/code>
1797
- Will generally raise NotImplemented if executed on a 32bit OS.
1797
+ Will generally raise NotImplementedError if executed on a 32bit OS.
1798
1798
[clinic start generated code]*/
1799
1799
1800
1800
static PyObject *
1801
1801
winreg_QueryReflectionKey_impl (PyObject * module , HKEY key )
1802
- /*[clinic end generated code: output=4e774af288c3ebb9 input=9f325eacb5a65d88 ]*/
1802
+ /*[clinic end generated code: output=4e774af288c3ebb9 input=a98fa51d55ade186 ]*/
1803
1803
{
1804
1804
HMODULE hMod ;
1805
1805
typedef LONG (WINAPI * RQRKFunc )(HKEY , BOOL * );
0 commit comments