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
d4583d7f
Kaydet (Commit)
d4583d7f
authored
Agu 16, 2016
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26750: use inspect.isdatadescriptor instead of our own
_is_data_descriptor().
üst
22ba01ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
mock.py
Lib/unittest/mock.py
+1
-7
No files found.
Lib/unittest/mock.py
Dosyayı görüntüle @
d4583d7f
...
...
@@ -72,12 +72,6 @@ DescriptorTypes = (
)
def
_is_data_descriptor
(
obj
):
# Data descriptors are Properties, slots, getsets and C data members.
return
((
hasattr
(
obj
,
'__set__'
)
or
hasattr
(
obj
,
'__del__'
))
and
hasattr
(
obj
,
'__get__'
))
def
_get_signature_object
(
func
,
as_instance
,
eat_self
):
"""
Given an arbitrary, possibly callable object, try to create a suitable
...
...
@@ -2138,7 +2132,7 @@ def create_autospec(spec, spec_set=False, instance=False, _parent=None,
_kwargs
.
update
(
kwargs
)
Klass
=
MagicMock
if
_is_data_
descriptor
(
spec
):
if
inspect
.
isdata
descriptor
(
spec
):
# descriptors don't have a spec
# because we don't know what type they return
_kwargs
=
{}
...
...
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