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
d3697262
Kaydet (Commit)
d3697262
authored
May 13, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unnecessary assignments.
üst
ead169d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
dtoa.c
Python/dtoa.c
+1
-4
No files found.
Python/dtoa.c
Dosyayı görüntüle @
d3697262
...
...
@@ -1382,7 +1382,6 @@ bigcomp(U *rv, const char *s0, BCinfo *bc)
Bigint
*
b
,
*
d
;
int
b2
,
d2
,
dd
,
i
,
nd
,
nd0
,
odd
,
p2
,
p5
;
dd
=
0
;
/* silence compiler warning about possibly unused variable */
nd
=
bc
->
nd
;
nd0
=
bc
->
nd0
;
p5
=
nd
+
bc
->
e0
;
...
...
@@ -2362,7 +2361,7 @@ _Py_dg_dtoa(double dd, int mode, int ndigits,
/* set pointers to NULL, to silence gcc compiler warnings and make
cleanup easier on error */
mlo
=
mhi
=
b
=
S
=
0
;
mlo
=
mhi
=
S
=
0
;
s0
=
0
;
u
.
d
=
dd
;
...
...
@@ -2713,8 +2712,6 @@ _Py_dg_dtoa(double dd, int mode, int ndigits,
* and for all and pass them and a shift to quorem, so it
* can do shifts and ors to compute the numerator for q.
*/
if
((
i
=
((
s5
?
32
-
hi0bits
(
S
->
x
[
S
->
wds
-
1
])
:
1
)
+
s2
)
&
0x1f
))
i
=
32
-
i
;
#define iInc 28
i
=
dshift
(
S
,
s2
);
b2
+=
i
;
...
...
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