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
04a4eb34
Kaydet (Commit)
04a4eb34
authored
Kas 30, 2007
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
abc's are subclasses of _Abstract, not instances.
üst
941973a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
regrtest.py
Lib/test/regrtest.py
+2
-2
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
04a4eb34
...
...
@@ -701,7 +701,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks):
pic
=
sys
.
path_importer_cache
.
copy
()
abcs
=
{
obj
:
obj
.
_abc_registry
.
copy
()
for
abc
in
[
getattr
(
_abcoll
,
a
)
for
a
in
_abcoll
.
__all__
if
is
instance
(
getattr
(
_abcoll
,
a
),
_Abstract
)]
if
is
subclass
(
getattr
(
_abcoll
,
a
),
_Abstract
)]
for
obj
in
abc
.
__subclasses__
()
+
[
abc
]}
if
indirect_test
:
...
...
@@ -751,7 +751,7 @@ def dash_R_cleanup(fs, ps, pic, abcs):
# Clear ABC registries, restoring previously saved ABC registries.
for
abc
in
[
getattr
(
_abcoll
,
a
)
for
a
in
_abcoll
.
__all__
]:
if
not
is
instance
(
abc
,
_Abstract
):
if
not
is
subclass
(
abc
,
_Abstract
):
continue
for
obj
in
abc
.
__subclasses__
()
+
[
abc
]:
obj
.
_abc_registry
=
abcs
.
get
(
obj
,
{})
.
copy
()
...
...
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