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
116f72fa
Kaydet (Commit)
116f72fa
authored
Şub 12, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bring decimal a bit closer to the spec for Reals.
üst
19a5c29d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
decimal.py
Lib/decimal.py
+14
-0
numbers.py
Lib/numbers.py
+1
-4
No files found.
Lib/decimal.py
Dosyayı görüntüle @
116f72fa
...
...
@@ -1519,6 +1519,20 @@ class Decimal(object):
__trunc__
=
__int__
@property
def
real
(
self
):
return
self
@property
def
imag
(
self
):
return
Decimal
(
0
)
def
conjugate
(
self
):
return
self
def
__complex__
(
self
):
return
complex
(
float
(
self
))
def
__long__
(
self
):
"""Converts to a long.
...
...
Lib/numbers.py
Dosyayı görüntüle @
116f72fa
...
...
@@ -51,10 +51,7 @@ Inexact.register(float)
## Notes on Decimal and it how relates to the numeric tower
## --------------------------------------------------------
## Decimal is Real except that it does not support the real and imag properties
## or the conjugate() and complex() methods. If those get defined at some
## point, they cannot use the default implementation which would be sensitive
## to decimal.Context and could produce different answers at different times.
## Decimal is Real except that it does not support rich comparisons.
##
## Decimal has some of the characteristics of Integrals. It provides
## logical operations but not as operators. The logical operations only apply
...
...
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