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
f8c37d16
Kaydet (Commit)
f8c37d16
authored
Eyl 07, 2007
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Restore caching of unicode hash value. This apparently was broken
during some refactoring.
üst
02c30561
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
unicodeobject.c
Objects/unicodeobject.c
+12
-5
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
f8c37d16
...
...
@@ -6588,12 +6588,19 @@ unicode_getitem(PyUnicodeObject *self, Py_ssize_t index)
}
static
long
unicode_hash
(
PyObject
*
self
)
unicode_hash
(
Py
Unicode
Object
*
self
)
{
/* Since Unicode objects compare equal to their UTF-8 string
counterparts, we hash the UTF-8 string. */
PyObject
*
v
=
_PyUnicode_AsDefaultEncodedString
(
self
,
NULL
);
return
PyObject_Hash
(
v
);
if
(
self
->
hash
!=
-
1
)
{
return
self
->
hash
;
}
else
{
/* Since Unicode objects compare equal to their UTF-8 string
counterparts, we hash the UTF-8 string. */
PyObject
*
v
=
_PyUnicode_AsDefaultEncodedString
((
PyObject
*
)
self
,
NULL
);
long
x
=
PyObject_Hash
(
v
);
self
->
hash
=
x
;
return
x
;
}
}
PyDoc_STRVAR
(
index__doc__
,
...
...
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