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
b859c070
Kaydet (Commit)
b859c070
authored
Eyl 05, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF bug #800796: Difference between hash() and __hash__()
slice(5).__hash__() now raises a TypeError.
üst
a1a1dba2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
test_slice.py
Lib/test/test_slice.py
+5
-0
sliceobject.c
Objects/sliceobject.c
+8
-1
No files found.
Lib/test/test_slice.py
Dosyayı görüntüle @
b859c070
...
...
@@ -14,6 +14,11 @@ class SliceTest(unittest.TestCase):
def
test_repr
(
self
):
self
.
assertEqual
(
repr
(
slice
(
1
,
2
,
3
)),
"slice(1, 2, 3)"
)
def
test_hash
(
self
):
# Verify clearing of SF bug #800796
self
.
assertRaises
(
TypeError
,
hash
,
slice
(
5
))
self
.
assertRaises
(
TypeError
,
slice
(
5
)
.
__hash__
)
def
test_cmp
(
self
):
s1
=
slice
(
1
,
2
,
3
)
s2
=
slice
(
1
,
2
,
3
)
...
...
Objects/sliceobject.c
Dosyayı görüntüle @
b859c070
...
...
@@ -278,6 +278,13 @@ slice_compare(PySliceObject *v, PySliceObject *w)
return
result
;
}
static
long
slice_hash
(
PySliceObject
*
v
)
{
PyErr_SetString
(
PyExc_TypeError
,
"unhashable type"
);
return
-
1L
;
}
PyTypeObject
PySlice_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* Number of items for varobject */
...
...
@@ -293,7 +300,7 @@ PyTypeObject PySlice_Type = {
0
,
/* tp_as_number */
0
,
/* tp_as_sequence */
0
,
/* tp_as_mapping */
0
,
/* tp_hash */
(
hashfunc
)
slice_hash
,
/* tp_hash */
0
,
/* tp_call */
0
,
/* tp_str */
PyObject_GenericGetAttr
,
/* tp_getattro */
...
...
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