]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 25 Jan 2020 19:41:25 +0000 (11:41 -0800)
committerNed Deily <nad@python.org>
Sat, 25 Jan 2020 19:41:25 +0000 (14:41 -0500)
(cherry picked from commit 2e9012a3e1e316c54e27f51ba5849ba06eab7da2)

Co-authored-by: YoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com>
Doc/library/enum.rst

index a6285ffaf1911492ad883d27a834502b01509663..38221199dcdb745042add81fac5b661ec702d3a5 100644 (file)
@@ -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``