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
d60cd429
Kaydet (Commit)
d60cd429
authored
Haz 24, 2012
tarafından
Larry Hastings
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #14815: Bugfix: the PyLong fed into the seed generator must be unsigned.
üst
50c40006
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
_randommodule.c
Modules/_randommodule.c
+5
-4
No files found.
Modules/_randommodule.c
Dosyayı görüntüle @
d60cd429
...
...
@@ -228,16 +228,17 @@ random_seed(RandomObject *self, PyObject *args)
Py_INCREF
(
Py_None
);
return
Py_None
;
}
/* If the arg is an int or long, use its absolute value; else use
* the absolute value of its hash code.
/* This algorithm relies on the number being unsigned.
* So: if the arg is a PyLong, use its absolute value.
* Otherwise use its hash value, cast to unsigned.
*/
if
(
PyLong_Check
(
arg
))
n
=
PyNumber_Absolute
(
arg
);
else
{
Py_
ssize
_t
hash
=
PyObject_Hash
(
arg
);
Py_
hash
_t
hash
=
PyObject_Hash
(
arg
);
if
(
hash
==
-
1
)
goto
Done
;
n
=
PyLong_FromS
size_t
(
hash
);
n
=
PyLong_FromS
ize_t
((
size_t
)
hash
);
}
if
(
n
==
NULL
)
goto
Done
;
...
...
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