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
be3c2fea
Kaydet (Commit)
be3c2fea
authored
Kas 13, 2013
tarafından
Ethan Furman
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
removed Enum.__eq__ as it added nothing
üst
82e9f32f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
enum.py
Lib/enum.py
+0
-5
test_enum.py
Lib/test/test_enum.py
+11
-0
No files found.
Lib/enum.py
Dosyayı görüntüle @
be3c2fea
...
...
@@ -447,11 +447,6 @@ class Enum(metaclass=EnumMeta):
return
([
'__class__'
,
'__doc__'
,
'__module__'
,
'name'
,
'value'
]
+
added_behavior
)
def
__eq__
(
self
,
other
):
if
type
(
other
)
is
self
.
__class__
:
return
self
is
other
return
NotImplemented
def
__format__
(
self
,
format_spec
):
# mixed-in Enums should use the mixed-in type's __format__, otherwise
# we can get strange results with the Enum name showing up instead of
...
...
Lib/test/test_enum.py
Dosyayı görüntüle @
be3c2fea
...
...
@@ -1030,6 +1030,15 @@ class TestEnum(unittest.TestCase):
self
.
assertEqual
(
list
(
Color
),
[
Color
.
red
,
Color
.
green
,
Color
.
blue
])
self
.
assertEqual
(
list
(
map
(
int
,
Color
)),
[
1
,
2
,
3
])
def
test_equality
(
self
):
class
AlwaysEqual
:
def
__eq__
(
self
,
other
):
return
True
class
OrdinaryEnum
(
Enum
):
a
=
1
self
.
assertEqual
(
AlwaysEqual
(),
OrdinaryEnum
.
a
)
self
.
assertEqual
(
OrdinaryEnum
.
a
,
AlwaysEqual
())
def
test_ordered_mixin
(
self
):
class
OrderedEnum
(
Enum
):
def
__ge__
(
self
,
other
):
...
...
@@ -1058,6 +1067,8 @@ class TestEnum(unittest.TestCase):
self
.
assertLessEqual
(
Grade
.
F
,
Grade
.
C
)
self
.
assertLess
(
Grade
.
D
,
Grade
.
A
)
self
.
assertGreaterEqual
(
Grade
.
B
,
Grade
.
B
)
self
.
assertEqual
(
Grade
.
B
,
Grade
.
B
)
self
.
assertNotEqual
(
Grade
.
C
,
Grade
.
D
)
def
test_extending2
(
self
):
class
Shade
(
Enum
):
...
...
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