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
db213a29
Kaydet (Commit)
db213a29
authored
Kas 27, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace _nbits() with int.bit_length().
üst
76338ec3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
17 deletions
+1
-17
decimal.py
Lib/decimal.py
+1
-17
No files found.
Lib/decimal.py
Dosyayı görüntüle @
db213a29
...
...
@@ -5526,23 +5526,7 @@ def _normalize(op1, op2, prec = 0):
##### Integer arithmetic functions used by ln, log10, exp and __pow__ #####
# This function from Tim Peters was taken from here:
# http://mail.python.org/pipermail/python-list/1999-July/007758.html
# The correction being in the function definition is for speed, and
# the whole function is not resolved with math.log because of avoiding
# the use of floats.
def
_nbits
(
n
,
correction
=
{
'0'
:
4
,
'1'
:
3
,
'2'
:
2
,
'3'
:
2
,
'4'
:
1
,
'5'
:
1
,
'6'
:
1
,
'7'
:
1
,
'8'
:
0
,
'9'
:
0
,
'a'
:
0
,
'b'
:
0
,
'c'
:
0
,
'd'
:
0
,
'e'
:
0
,
'f'
:
0
}):
"""Number of bits in binary representation of the positive integer n,
or 0 if n == 0.
"""
if
n
<
0
:
raise
ValueError
(
"The argument to _nbits should be nonnegative."
)
hex_n
=
"
%
x"
%
n
return
4
*
len
(
hex_n
)
-
correction
[
hex_n
[
0
]]
_nbits
=
int
.
bit_length
def
_sqrt_nearest
(
n
,
a
):
"""Closest integer to the square root of the positive integer n. a is
...
...
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