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
cd45385f
Unverified
Kaydet (Commit)
cd45385f
authored
Eki 06, 2018
tarafından
Ethan Furman
Kaydeden (comit)
GitHub
Eki 06, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34909: keep searching mixins until base class is found (GH-9737)
üst
92878829
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
3 deletions
+22
-3
enum.py
Lib/enum.py
+1
-3
test_enum.py
Lib/test/test_enum.py
+21
-0
No files found.
Lib/enum.py
Dosyayı görüntüle @
cd45385f
...
...
@@ -486,7 +486,7 @@ class EnumMeta(type):
if
base
is
object
:
continue
elif
'__new__'
in
base
.
__dict__
:
if
issubclass
(
base
,
Enum
)
and
not
hasattr
(
base
,
'__new_member__'
)
:
if
issubclass
(
base
,
Enum
):
continue
return
base
...
...
@@ -499,7 +499,6 @@ class EnumMeta(type):
member_type
=
_find_data_type
(
bases
)
or
object
if
first_enum
.
_member_names_
:
raise
TypeError
(
"Cannot extend enumerations"
)
return
member_type
,
first_enum
@staticmethod
...
...
@@ -545,7 +544,6 @@ class EnumMeta(type):
use_args
=
False
else
:
use_args
=
True
return
__new__
,
save_new
,
use_args
...
...
Lib/test/test_enum.py
Dosyayı görüntüle @
cd45385f
...
...
@@ -1842,6 +1842,27 @@ class TestEnum(unittest.TestCase):
self
.
assertEqual
(
ConfusedColor
.
RED
.
social
(),
"what's up?"
)
self
.
assertTrue
(
issubclass
(
ReformedColor
,
int
))
def
test_multiple_inherited_mixin
(
self
):
class
StrEnum
(
str
,
Enum
):
def
__new__
(
cls
,
*
args
,
**
kwargs
):
for
a
in
args
:
if
not
isinstance
(
a
,
str
):
raise
TypeError
(
"Enumeration '
%
s' (
%
s) is not"
" a string"
%
(
a
,
type
(
a
)
.
__name__
))
return
str
.
__new__
(
cls
,
*
args
,
**
kwargs
)
@unique
class
Decision1
(
StrEnum
):
REVERT
=
"REVERT"
REVERT_ALL
=
"REVERT_ALL"
RETRY
=
"RETRY"
class
MyEnum
(
StrEnum
):
pass
@unique
class
Decision2
(
MyEnum
):
REVERT
=
"REVERT"
REVERT_ALL
=
"REVERT_ALL"
RETRY
=
"RETRY"
class
TestOrder
(
unittest
.
TestCase
):
...
...
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