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
586b2e3f
Kaydet (Commit)
586b2e3f
authored
Tem 15, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
long_format: Simplify the overly elaborate base-is-a-power-of-2 code.
üst
881fd90f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
28 deletions
+16
-28
longobject.c
Objects/longobject.c
+16
-28
No files found.
Objects/longobject.c
Dosyayı görüntüle @
586b2e3f
...
...
@@ -792,38 +792,26 @@ long_format(PyObject *aa, int base, int addL)
}
else
if
((
base
&
(
base
-
1
))
==
0
)
{
/* JRH: special case for power-of-2 bases */
twodigits
temp
=
a
->
ob_digit
[
0
];
int
bitsleft
=
SHIFT
;
int
rem
;
int
last
=
size_a
;
int
basebits
=
1
;
twodigits
accum
=
0
;
int
accumbits
=
0
;
/* # of bits in accum */
int
basebits
=
1
;
/* # of bits in base-1 */
i
=
base
;
while
((
i
>>=
1
)
>
1
)
++
basebits
;
i
=
0
;
for
(;;)
{
while
(
bitsleft
>=
basebits
)
{
if
((
temp
==
0
)
&&
(
i
>=
last
-
1
))
break
;
rem
=
temp
&
(
base
-
1
);
if
(
rem
<
10
)
rem
+=
'0'
;
else
rem
+=
'A'
-
10
;
for
(
i
=
0
;
i
<
size_a
;
++
i
)
{
accum
|=
a
->
ob_digit
[
i
]
<<
accumbits
;
accumbits
+=
SHIFT
;
assert
(
accumbits
>=
basebits
);
do
{
char
digit
=
(
char
)(
accum
&
(
base
-
1
));
digit
+=
(
digit
<
10
)
?
'0'
:
'A'
-
10
;
assert
(
p
>
PyString_AS_STRING
(
str
));
*--
p
=
(
char
)
rem
;
bitsleft
-=
basebits
;
temp
>>=
basebits
;
}
if
(
++
i
>=
last
)
{
if
(
temp
==
0
)
break
;
bitsleft
=
99
;
/* loop again to pick up final digits */
}
else
{
temp
=
(
a
->
ob_digit
[
i
]
<<
bitsleft
)
|
temp
;
bitsleft
+=
SHIFT
;
}
*--
p
=
digit
;
accumbits
-=
basebits
;
accum
>>=
basebits
;
}
while
(
i
<
size_a
-
1
?
accumbits
>=
basebits
:
accum
>
0
);
}
}
else
{
...
...
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