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
144b98da
Kaydet (Commit)
144b98da
authored
Kas 14, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More simple test cases for mixed classic+new multiple inheritance.
üst
a91e9646
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
test_descr.py
Lib/test/test_descr.py
+35
-0
No files found.
Lib/test/test_descr.py
Dosyayı görüntüle @
144b98da
...
@@ -830,6 +830,34 @@ def multi():
...
@@ -830,6 +830,34 @@ def multi():
vereq
(
int
(
Frag
()),
42
)
vereq
(
int
(
Frag
()),
42
)
# MI mixing classic and new-style classes.
# MI mixing classic and new-style classes.
class
A
:
x
=
1
class
B
(
A
):
pass
class
C
(
A
):
x
=
2
class
D
(
B
,
C
):
pass
vereq
(
D
.
x
,
1
)
# Classic MRO is preserved for a classic base class.
class
E
(
D
,
object
):
pass
vereq
(
E
.
__mro__
,
(
E
,
D
,
B
,
A
,
C
,
object
))
vereq
(
E
.
x
,
1
)
# But with a mix of classic bases, their MROs are combined using
# new-style MRO.
class
F
(
B
,
C
,
object
):
pass
vereq
(
F
.
__mro__
,
(
F
,
B
,
C
,
A
,
object
))
vereq
(
F
.
x
,
2
)
# Try something else.
class
C
:
class
C
:
def
cmethod
(
self
):
def
cmethod
(
self
):
return
"C a"
return
"C a"
...
@@ -875,6 +903,13 @@ def multi():
...
@@ -875,6 +903,13 @@ def multi():
# XXX Expected this (the commented-out result):
# XXX Expected this (the commented-out result):
# vereq(M3.__mro__, (M3, M1, M2, object, D, C))
# vereq(M3.__mro__, (M3, M1, M2, object, D, C))
vereq
(
M3
.
__mro__
,
(
M3
,
M1
,
M2
,
D
,
C
,
object
))
# XXX ?
vereq
(
M3
.
__mro__
,
(
M3
,
M1
,
M2
,
D
,
C
,
object
))
# XXX ?
m
=
M3
()
vereq
(
m
.
cmethod
(),
"C a"
)
vereq
(
m
.
dmethod
(),
"D a"
)
vereq
(
m
.
m1method
(),
"M1 a"
)
vereq
(
m
.
m2method
(),
"M2 a"
)
vereq
(
m
.
m3method
(),
"M3 a"
)
vereq
(
m
.
all_method
(),
"M3 b"
)
def
diamond
():
def
diamond
():
if
verbose
:
print
"Testing multiple inheritance special cases..."
if
verbose
:
print
"Testing multiple inheritance special cases..."
...
...
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