summaryrefslogtreecommitdiffstats
path: root/Lib/enum.py
diff options
context:
space:
mode:
authorAngelin BOOZ <9497359+lem2clide@users.noreply.github.com>2020-09-21 13:11:06 (GMT)
committerGitHub <noreply@github.com>2020-09-21 13:11:06 (GMT)
commit68526fe258da8c01196fd7cf48e8e5f1280bf8fd (patch)
tree45b3930335dca97d5b613100e12b0feaa7e218ed /Lib/enum.py
parent1b328ea9a7d15de4a8c9d0eb8aee94f6c75c1b46 (diff)
downloadcpython-68526fe258da8c01196fd7cf48e8e5f1280bf8fd.zip
cpython-68526fe258da8c01196fd7cf48e8e5f1280bf8fd.tar.gz
cpython-68526fe258da8c01196fd7cf48e8e5f1280bf8fd.tar.bz2
bpo-40084: Enum - dir() includes member attributes (GH-19219)
Diffstat (limited to 'Lib/enum.py')
-rw-r--r--Lib/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 3c459ea..e8603a4 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -644,7 +644,7 @@ class Enum(metaclass=EnumMeta):
for cls in self.__class__.mro()
for m in cls.__dict__
if m[0] != '_' and m not in self._member_map_
- ]
+ ] + [m for m in self.__dict__ if m[0] != '_']
return (['__class__', '__doc__', '__module__'] + added_behavior)
def __format__(self, format_spec):