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
bd55c525
Kaydet (Commit)
bd55c525
authored
Ock 17, 2009
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4930: Slightly cleaner (and faster) code in type creation:
compare slots by address, not by name.
üst
d25f87ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
typeobject.c
Objects/typeobject.c
+2
-2
No files found.
Objects/typeobject.c
Dosyayı görüntüle @
bd55c525
...
...
@@ -6114,7 +6114,7 @@ update_one_slot(PyTypeObject *type, slotdef *p)
else
if
(
Py_TYPE
(
descr
)
==
&
PyCFunction_Type
&&
PyCFunction_GET_FUNCTION
(
descr
)
==
(
PyCFunction
)
tp_new_wrapper
&&
strcmp
(
p
->
name
,
"__new__"
)
==
0
)
ptr
==
(
void
**
)
&
type
->
tp_new
)
{
/* The __new__ wrapper is not a wrapper descriptor,
so must be special-cased differently.
...
...
@@ -6134,7 +6134,7 @@ update_one_slot(PyTypeObject *type, slotdef *p)
point out a bug in this reasoning a beer. */
}
else
if
(
descr
==
Py_None
&&
strcmp
(
p
->
name
,
"__hash__"
)
==
0
)
{
ptr
==
(
void
**
)
&
type
->
tp_hash
)
{
/* We specifically allow __hash__ to be set to None
to prevent inheritance of the default
implementation from object.__hash__ */
...
...
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