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
a0eae039
Kaydet (Commit)
a0eae039
authored
Ock 26, 2009
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix comment.
üst
6ffa4a2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
longobject.c
Objects/longobject.c
+3
-3
No files found.
Objects/longobject.c
Dosyayı görüntüle @
a0eae039
...
@@ -1977,9 +1977,9 @@ long_hash(PyLongObject *v)
...
@@ -1977,9 +1977,9 @@ long_hash(PyLongObject *v)
i
=
-
(
i
);
i
=
-
(
i
);
}
}
#define LONG_BIT_PyLong_SHIFT (8*sizeof(long) - PyLong_SHIFT)
#define LONG_BIT_PyLong_SHIFT (8*sizeof(long) - PyLong_SHIFT)
/* The following loop produces a C
long x such that x is congruent to
/* The following loop produces a C
unsigned long x such that x is
the absolute value of v modulo ULONG_MAX. The resulting x is
congruent to the absolute value of v modulo ULONG_MAX. The
nonzero if and only if v is. */
resulting x is
nonzero if and only if v is. */
while
(
--
i
>=
0
)
{
while
(
--
i
>=
0
)
{
/* Force a native long #-bits (32 or 64) circular shift */
/* Force a native long #-bits (32 or 64) circular shift */
x
=
((
x
<<
PyLong_SHIFT
)
&
~
PyLong_MASK
)
|
x
=
((
x
<<
PyLong_SHIFT
)
&
~
PyLong_MASK
)
|
...
...
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