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
26c25d9f
Kaydet (Commit)
26c25d9f
authored
Mar 25, 2008
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Decimal.sqrt(0) failed when the context was not
explicitly supplied.
üst
a79e0509
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
decimal.py
Lib/decimal.py
+3
-3
test_decimal.py
Lib/test/test_decimal.py
+6
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/decimal.py
Dosyayı görüntüle @
26c25d9f
...
...
@@ -2316,6 +2316,9 @@ class Decimal(object):
def
sqrt
(
self
,
context
=
None
):
"""Return the square root of self."""
if
context
is
None
:
context
=
getcontext
()
if
self
.
_is_special
:
ans
=
self
.
_check_nans
(
context
=
context
)
if
ans
:
...
...
@@ -2329,9 +2332,6 @@ class Decimal(object):
ans
=
_dec_from_triple
(
self
.
_sign
,
'0'
,
self
.
_exp
//
2
)
return
ans
.
_fix
(
context
)
if
context
is
None
:
context
=
getcontext
()
if
self
.
_sign
==
1
:
return
context
.
_raise_error
(
InvalidOperation
,
'sqrt(-x), x > 0'
)
...
...
Lib/test/test_decimal.py
Dosyayı görüntüle @
26c25d9f
...
...
@@ -1192,6 +1192,12 @@ class DecimalUsabilityTest(unittest.TestCase):
d
=
d1
.
max
(
d2
)
self
.
assertTrue
(
type
(
d
)
is
Decimal
)
def
test_implicit_context
(
self
):
# Check results when context given implicitly. (Issue 2478)
c
=
getcontext
()
self
.
assertEqual
(
str
(
Decimal
(
0
)
.
sqrt
()),
str
(
c
.
sqrt
(
Decimal
(
0
))))
class
DecimalPythonAPItests
(
unittest
.
TestCase
):
...
...
Misc/NEWS
Dosyayı görüntüle @
26c25d9f
...
...
@@ -27,6 +27,8 @@ Core and builtins
Library
-------
- Issue #2478: fix failure of decimal.Decimal(0).sqrt()
- Issue #2432: give DictReader the dialect and line_num attributes
advertised in the docs.
...
...
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