Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
388a3921
Kaydet (Commit)
388a3921
authored
Agu 12, 2013
tarafından
Ethan Furman
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 18693: Put custom __dir__ back in place. Will instead look at fixing `help()`.
üst
8f2c2bcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
enum.py
Lib/enum.py
+6
-0
test_enum.py
Lib/test/test_enum.py
+15
-0
No files found.
Lib/enum.py
Dosyayı görüntüle @
388a3921
...
...
@@ -223,6 +223,9 @@ class EnumMeta(type):
def
__contains__
(
cls
,
member
):
return
isinstance
(
member
,
cls
)
and
member
.
name
in
cls
.
_member_map_
def
__dir__
(
self
):
return
[
'__class__'
,
'__doc__'
,
'__members__'
]
+
self
.
_member_names_
@property
def
__members__
(
cls
):
"""Returns a mapping of member name->value.
...
...
@@ -430,6 +433,9 @@ class Enum(metaclass=EnumMeta):
def
__str__
(
self
):
return
"
%
s.
%
s"
%
(
self
.
__class__
.
__name__
,
self
.
_name_
)
def
__dir__
(
self
):
return
([
'__class__'
,
'__doc__'
,
'name'
,
'value'
])
def
__eq__
(
self
,
other
):
if
type
(
other
)
is
self
.
__class__
:
return
self
is
other
...
...
Lib/test/test_enum.py
Dosyayı görüntüle @
388a3921
...
...
@@ -67,6 +67,21 @@ class TestEnum(unittest.TestCase):
WINTER
=
4
self
.
Season
=
Season
def
test_dir_on_class
(
self
):
Season
=
self
.
Season
self
.
assertEqual
(
set
(
dir
(
Season
)),
set
([
'__class__'
,
'__doc__'
,
'__members__'
,
'SPRING'
,
'SUMMER'
,
'AUTUMN'
,
'WINTER'
]),
)
def
test_dir_on_item
(
self
):
Season
=
self
.
Season
self
.
assertEqual
(
set
(
dir
(
Season
.
WINTER
)),
set
([
'__class__'
,
'__doc__'
,
'name'
,
'value'
]),
)
def
test_enum_in_enum_out
(
self
):
Season
=
self
.
Season
self
.
assertIs
(
Season
(
Season
.
WINTER
),
Season
.
WINTER
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment