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
3a624042
Kaydet (Commit)
3a624042
authored
Kas 08, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Correctly forward exception in instance_contains().
Fixes #1591996. Patch contributed by Neal Norwitz. Will backport.
üst
e452f51b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
test_class.py
Lib/test/test_class.py
+8
-0
classobject.c
Objects/classobject.c
+6
-4
No files found.
Lib/test/test_class.py
Dosyayı görüntüle @
3a624042
...
...
@@ -172,6 +172,14 @@ testme ^ 1
# List/dict operations
class
Empty
:
pass
try
:
1
in
Empty
()
print
'failed, should have raised TypeError'
except
TypeError
:
pass
1
in
testme
testme
[
1
]
...
...
Objects/classobject.c
Dosyayı görüntüle @
3a624042
...
...
@@ -1318,15 +1318,17 @@ instance_contains(PyInstanceObject *inst, PyObject *member)
/* Couldn't find __contains__. */
if
(
PyErr_ExceptionMatches
(
PyExc_AttributeError
))
{
Py_ssize_t
rc
;
/* Assume the failure was simply due to that there is no
* __contains__ attribute, and try iterating instead.
*/
PyErr_Clear
();
return
_PySequence_IterSearch
((
PyObject
*
)
inst
,
member
,
PY_ITERSEARCH_CONTAINS
)
>
0
;
rc
=
_PySequence_IterSearch
((
PyObject
*
)
inst
,
member
,
PY_ITERSEARCH_CONTAINS
);
if
(
rc
>=
0
)
return
rc
>
0
;
}
else
return
-
1
;
return
-
1
;
}
static
PySequenceMethods
...
...
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