@@ -1702,7 +1702,7 @@ winreg.DisableReflectionKey
17021702
17031703Disables registry reflection for 32bit processes running on a 64bit OS.
17041704
1705- Will generally raise NotImplemented if executed on a 32bit OS.
1705+ Will generally raise NotImplementedError if executed on a 32bit OS.
17061706
17071707If the key is not on the reflection list, the function succeeds but has
17081708no effect. Disabling reflection for a key does not affect reflection
@@ -1711,7 +1711,7 @@ of any subkeys.
17111711
17121712static PyObject *
17131713winreg_DisableReflectionKey_impl (PyObject * module , HKEY key )
1714- /*[clinic end generated code: output=830cce504cc764b4 input=a6c9e5ca5410193c ]*/
1714+ /*[clinic end generated code: output=830cce504cc764b4 input=70bece2dee02e073 ]*/
17151715{
17161716 HMODULE hMod ;
17171717 typedef LONG (WINAPI * RDRKFunc )(HKEY );
@@ -1749,14 +1749,14 @@ winreg.EnableReflectionKey
17491749
17501750Restores registry reflection for the specified disabled key.
17511751
1752- Will generally raise NotImplemented if executed on a 32bit OS.
1752+ Will generally raise NotImplementedError if executed on a 32bit OS.
17531753Restoring reflection for a key does not affect reflection of any
17541754subkeys.
17551755[clinic start generated code]*/
17561756
17571757static PyObject *
17581758winreg_EnableReflectionKey_impl (PyObject * module , HKEY key )
1759- /*[clinic end generated code: output=86fa1385fdd9ce57 input=7748abbacd1e166a ]*/
1759+ /*[clinic end generated code: output=86fa1385fdd9ce57 input=eeae770c6eb9f559 ]*/
17601760{
17611761 HMODULE hMod ;
17621762 typedef LONG (WINAPI * RERKFunc )(HKEY );
@@ -1794,12 +1794,12 @@ winreg.QueryReflectionKey
17941794
17951795Returns the reflection state for the specified key as a bool.
17961796
1797- Will generally raise NotImplemented if executed on a 32bit OS.
1797+ Will generally raise NotImplementedError if executed on a 32bit OS.
17981798[clinic start generated code]*/
17991799
18001800static PyObject *
18011801winreg_QueryReflectionKey_impl (PyObject * module , HKEY key )
1802- /*[clinic end generated code: output=4e774af288c3ebb9 input=9f325eacb5a65d88 ]*/
1802+ /*[clinic end generated code: output=4e774af288c3ebb9 input=a98fa51d55ade186 ]*/
18031803{
18041804 HMODULE hMod ;
18051805 typedef LONG (WINAPI * RQRKFunc )(HKEY , BOOL * );
0 commit comments