https://github.com/python/cpython/commit/ba683c22ecd035a1090f9fc7aba48d54854d23bd
commit: ba683c22ecd035a1090f9fc7aba48d54854d23bd
branch: main
author: Miyashita Yosuke <[email protected]>
committer: hugovk <[email protected]>
date: 2024-01-18T09:23:15Z
summary:
gh-114231: Fix indentation in enum.rst (#114232)
files:
M Doc/library/enum.rst
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 20222bfb3611ab..07b15e23b2c10a 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -838,7 +838,7 @@ Utilities and Decorators
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2,
-2`` is
- used to create the ``SECOND`` enum member;
+ used to create the ``SECOND`` enum member;
* ``THREE = [auto(), -3]`` will *not* work (``<auto instance>, -3`` is used
to
create the ``THREE`` enum member)
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]