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
fc7df0e6
Unverified
Kaydet (Commit)
fc7df0e6
authored
Mar 07, 2018
tarafından
INADA Naoki
Kaydeden (comit)
GitHub
Mar 07, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)
üst
bc3f2289
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
12 deletions
+45
-12
test_abc.py
Lib/test/test_abc.py
+18
-0
2018-03-06-20-30-20.bpo-32999.lgFXWl.rst
...S.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst
+2
-0
_abc.c
Modules/_abc.c
+25
-12
No files found.
Lib/test/test_abc.py
Dosyayı görüntüle @
fc7df0e6
...
...
@@ -392,6 +392,24 @@ def test_factory(abc_ABCMeta, abc_get_cache_token):
self
.
assertIsInstance
(
42
,
A
)
self
.
assertIsInstance
(
42
,
(
A
,))
def
test_issubclass_bad_arguments
(
self
):
class
A
(
metaclass
=
abc_ABCMeta
):
pass
with
self
.
assertRaises
(
TypeError
):
issubclass
({},
A
)
# unhashable
with
self
.
assertRaises
(
TypeError
):
issubclass
(
42
,
A
)
# No __mro__
# Python version supports any iterable as __mro__.
# But it's implementation detail and don't emulate it in C version.
class
C
:
__mro__
=
42
# __mro__ is not tuple
with
self
.
assertRaises
(
TypeError
):
issubclass
(
C
(),
A
)
def
test_all_new_methods_are_called
(
self
):
class
A
(
metaclass
=
abc_ABCMeta
):
pass
...
...
Misc/NEWS.d/next/Library/2018-03-06-20-30-20.bpo-32999.lgFXWl.rst
0 → 100644
Dosyayı görüntüle @
fc7df0e6
Fix C implemetation of ``ABC.__subclasscheck__(cls, subclass)`` crashed when
``subclass`` is not a type object.
Modules/_abc.c
Dosyayı görüntüle @
fc7df0e6
...
...
@@ -16,6 +16,7 @@ _Py_IDENTIFIER(__abstractmethods__);
_Py_IDENTIFIER
(
__class__
);
_Py_IDENTIFIER
(
__dict__
);
_Py_IDENTIFIER
(
__bases__
);
_Py_IDENTIFIER
(
__mro__
);
_Py_IDENTIFIER
(
_abc_impl
);
_Py_IDENTIFIER
(
__subclasscheck__
);
_Py_IDENTIFIER
(
__subclasshook__
);
...
...
@@ -568,7 +569,7 @@ _abc__abc_subclasscheck_impl(PyObject *module, PyObject *self,
PyObject
*
subclass
)
/*[clinic end generated code: output=b56c9e4a530e3894 input=1d947243409d10b8]*/
{
PyObject
*
ok
,
*
mro
,
*
subclasses
=
NULL
,
*
result
=
NULL
;
PyObject
*
ok
,
*
mro
=
NULL
,
*
subclasses
=
NULL
,
*
result
=
NULL
;
Py_ssize_t
pos
;
int
incache
;
_abc_data
*
impl
=
_get_impl
(
self
);
...
...
@@ -637,20 +638,31 @@ _abc__abc_subclasscheck_impl(PyObject *module, PyObject *self,
}
Py_DECREF
(
ok
);
/* 4. Check if it's a direct subclass. */
mro
=
((
PyTypeObject
*
)
subclass
)
->
tp_mro
;
assert
(
PyTuple_Check
(
mro
));
for
(
pos
=
0
;
pos
<
PyTuple_GET_SIZE
(
mro
);
pos
++
)
{
PyObject
*
mro_item
=
PyTuple_GET_ITEM
(
mro
,
pos
);
if
(
mro_item
==
NULL
)
{
/* 4. Check if it's a direct subclass.
*
* if cls in getattr(subclass, '__mro__', ()):
* cls._abc_cache.add(subclass)
* return True
*/
if
(
_PyObject_LookupAttrId
(
subclass
,
&
PyId___mro__
,
&
mro
)
<
0
)
{
goto
end
;
}
if
(
mro
!=
NULL
)
{
if
(
!
PyTuple_Check
(
mro
))
{
// Python version supports non-tuple iterable. Keep it as
// implementation detail.
PyErr_SetString
(
PyExc_TypeError
,
"__mro__ is not a tuple"
);
goto
end
;
}
if
((
PyObject
*
)
self
==
mro_item
)
{
if
(
_add_to_weak_set
(
&
impl
->
_abc_cache
,
subclass
)
<
0
)
{
for
(
pos
=
0
;
pos
<
PyTuple_GET_SIZE
(
mro
);
pos
++
)
{
PyObject
*
mro_item
=
PyTuple_GET_ITEM
(
mro
,
pos
);
if
((
PyObject
*
)
self
==
mro_item
)
{
if
(
_add_to_weak_set
(
&
impl
->
_abc_cache
,
subclass
)
<
0
)
{
goto
end
;
}
result
=
Py_True
;
goto
end
;
}
result
=
Py_True
;
goto
end
;
}
}
...
...
@@ -690,7 +702,8 @@ _abc__abc_subclasscheck_impl(PyObject *module, PyObject *self,
result
=
Py_False
;
end:
Py_XDECREF
(
impl
);
Py_DECREF
(
impl
);
Py_XDECREF
(
mro
);
Py_XDECREF
(
subclasses
);
Py_XINCREF
(
result
);
return
result
;
...
...
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