diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-25 19:40:27 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2020-01-25 19:40:27 (GMT) |
commit | eec7636bfd07412b5872c0683636e9e98bf79a8c (patch) | |
tree | db86228299bcbdd792a0a41f3cd8c6a5310a50e7 | |
parent | 1cf0df4f1bcc38dfd70a152af20cf584de531ea7 (diff) | |
download | cpython-eec7636bfd07412b5872c0683636e9e98bf79a8c.zip cpython-eec7636bfd07412b5872c0683636e9e98bf79a8c.tar.gz cpython-eec7636bfd07412b5872c0683636e9e98bf79a8c.tar.bz2 |
bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) (GH-17875)
(cherry picked from commit 2e9012a3e1e316c54e27f51ba5849ba06eab7da2)
Co-authored-by: YoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com>
-rw-r--r-- | Doc/library/enum.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 19277d7..7538084 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -55,7 +55,7 @@ helper, :class:`auto`. .. class:: auto - Instances are replaced with an appropriate value for Enum members. + Instances are replaced with an appropriate value for Enum members. Initial value starts at 1. .. versionadded:: 3.6 ``Flag``, ``IntFlag``, ``auto`` |