File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ This module offers the following functions:
427
427
*key * is an already open key, or one of the predefined
428
428
:ref: `HKEY_* constants <hkey-constants >`.
429
429
430
- Will generally raise :exc: `NotImplemented ` if executed on a 32-bit
430
+ Will generally raise :exc: `NotImplementedError ` if executed on a 32-bit
431
431
operating system.
432
432
433
433
If the key is not on the reflection list, the function succeeds but has no
@@ -442,7 +442,7 @@ This module offers the following functions:
442
442
*key * is an already open key, or one of the predefined
443
443
:ref: `HKEY_* constants <hkey-constants >`.
444
444
445
- Will generally raise :exc: `NotImplemented ` if executed on a 32-bit
445
+ Will generally raise :exc: `NotImplementedError ` if executed on a 32-bit
446
446
operating system.
447
447
448
448
Restoring reflection for a key does not affect reflection of any subkeys.
@@ -457,7 +457,7 @@ This module offers the following functions:
457
457
458
458
Returns ``True `` if reflection is disabled.
459
459
460
- Will generally raise :exc: `NotImplemented ` if executed on a 32-bit
460
+ Will generally raise :exc: `NotImplementedError ` if executed on a 32-bit
461
461
operating system.
462
462
463
463
Original file line number Diff line number Diff line change @@ -322,19 +322,19 @@ PyDoc_STRVAR(SetValueEx_doc,
322
322
323
323
PyDoc_STRVAR (DisableReflectionKey_doc ,
324
324
"Disables registry reflection for 32-bit processes running on a 64-bit\n"
325
- "Operating System. Will generally raise NotImplemented if executed on\n"
325
+ "Operating System. Will generally raise NotImplementedError if executed on\n"
326
326
"a 32-bit Operating System.\n"
327
327
"If the key is not on the reflection list, the function succeeds but has no effect.\n"
328
328
"Disabling reflection for a key does not affect reflection of any subkeys." );
329
329
330
330
PyDoc_STRVAR (EnableReflectionKey_doc ,
331
331
"Restores registry reflection for the specified disabled key.\n"
332
- "Will generally raise NotImplemented if executed on a 32-bit Operating System.\n"
332
+ "Will generally raise NotImplementedError if executed on a 32-bit Operating System.\n"
333
333
"Restoring reflection for a key does not affect reflection of any subkeys." );
334
334
335
335
PyDoc_STRVAR (QueryReflectionKey_doc ,
336
336
"bool = QueryReflectionKey(hkey) - Determines the reflection state for the specified key.\n"
337
- "Will generally raise NotImplemented if executed on a 32-bit Operating System.\n" );
337
+ "Will generally raise NotImplementedError if executed on a 32-bit Operating System.\n" );
338
338
339
339
/* PyHKEY docstrings */
340
340
PyDoc_STRVAR (PyHKEY_doc ,
You can’t perform that action at this time.
0 commit comments