diff options
author | David H <dheiberg@mozilla.com> | 2019-07-31 22:49:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-07-31 22:49:55 (GMT) |
commit | ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7 (patch) | |
tree | 419c0c7bd6722582a20862c0a16ccc1a682eda98 /Doc/library/winreg.rst | |
parent | 9f55551f3df238e58315e724e50cb0d574d75b94 (diff) | |
download | cpython-ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7.zip cpython-ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7.tar.gz cpython-ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7.tar.bz2 |
bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062)
Diffstat (limited to 'Doc/library/winreg.rst')
-rw-r--r-- | Doc/library/winreg.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst index e9c0261..cb67f2f 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -456,7 +456,7 @@ This module offers the following functions: *key* is an already open key, or one of the predefined :ref:`HKEY_* constants <hkey-constants>`. - Will generally raise :exc:`NotImplemented` if executed on a 32-bit operating + Will generally raise :exc:`NotImplementedError` if executed on a 32-bit operating system. If the key is not on the reflection list, the function succeeds but has no @@ -471,7 +471,7 @@ This module offers the following functions: *key* is an already open key, or one of the predefined :ref:`HKEY_* constants <hkey-constants>`. - Will generally raise :exc:`NotImplemented` if executed on a 32-bit operating + Will generally raise :exc:`NotImplementedError` if executed on a 32-bit operating system. Restoring reflection for a key does not affect reflection of any subkeys. @@ -486,7 +486,7 @@ This module offers the following functions: Returns ``True`` if reflection is disabled. - Will generally raise :exc:`NotImplemented` if executed on a 32-bit + Will generally raise :exc:`NotImplementedError` if executed on a 32-bit operating system. |