diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-15 17:28:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 17:28:55 (GMT) |
commit | a38db84122b4f664ee30b9ffd55ce87b7f4517ac (patch) | |
tree | 677e5e4335b44c04f6a713b24543e6284d66b7d6 /Doc/library | |
parent | 67729a91a5fe6ad06fb5f2cc4f91ad99876e431a (diff) | |
download | cpython-a38db84122b4f664ee30b9ffd55ce87b7f4517ac.zip cpython-a38db84122b4f664ee30b9ffd55ce87b7f4517ac.tar.gz cpython-a38db84122b4f664ee30b9ffd55ce87b7f4517ac.tar.bz2 |
bpo-32133: Improve numbers docs (GH-26124) (GH-26149)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/numbers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index d37123c..b77845e 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -10,7 +10,7 @@ The :mod:`numbers` module (:pep:`3141`) defines a hierarchy of numeric :term:`abstract base classes <abstract base class>` which progressively define -more operations. None of the types defined in this module can be instantiated. +more operations. None of the types defined in this module are intended to be instantiated. .. class:: Number |