summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-14 19:08:21 (GMT)
committerGitHub <noreply@github.com>2024-06-14 19:08:21 (GMT)
commitda40fa35263893f78e75205c54fa3bcd24a64468 (patch)
tree95ff2edd5a8d581f185d3e9202f4b6ce2eea2dfd /Doc
parent6e3e1124287858b6e22d10ac912e9b76afa3e41b (diff)
downloadcpython-da40fa35263893f78e75205c54fa3bcd24a64468.zip
cpython-da40fa35263893f78e75205c54fa3bcd24a64468.tar.gz
cpython-da40fa35263893f78e75205c54fa3bcd24a64468.tar.bz2
[3.13] gh-120361: Add `nonmember` test with enum flags inside to `test_enum` (GH-120364) (#120511)
gh-120361: Add `nonmember` test with enum flags inside to `test_enum` (GH-120364) * gh-120361: Add `nonmember` test with enum flags inside to `test_enum` (cherry picked from commit 7fadfd82ebf6ea90b38cb3f2a046a51f8601a205) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/enum.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 8c604c2..9cf94e3 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -527,7 +527,7 @@ Data Types
``Flag`` is the same as :class:`Enum`, but its members support the bitwise
operators ``&`` (*AND*), ``|`` (*OR*), ``^`` (*XOR*), and ``~`` (*INVERT*);
- the results of those operators are members of the enumeration.
+ the results of those operations are (aliases of) members of the enumeration.
.. method:: __contains__(self, value)