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
86173daf
Kaydet (Commit)
86173daf
authored
Şub 01, 2008
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Context flags get set, not incremented.
üst
48aa4b15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
decimal.rst
Doc/library/decimal.rst
+2
-2
decimal.py
Lib/decimal.py
+4
-4
No files found.
Doc/library/decimal.rst
Dosyayı görüntüle @
86173daf
...
...
@@ -75,7 +75,7 @@ decimal module are: :const:`Clamped`, :const:`InvalidOperation`,
:const:`Overflow`, and :const:`Underflow`.
For each signal there is a flag and a trap enabler. When a signal is
encountered, its flag is
incremented from zero and
, then, if the trap enabler is
encountered, its flag is
set to one
, then, if the trap enabler is
set to one, an exception is raised. Flags are sticky, so the user needs to
reset them before monitoring a calculation.
...
...
@@ -1045,7 +1045,7 @@ Signals
Signals represent conditions that arise during computation. Each corresponds to
one context flag and one context trap enabler.
The context flag is
incremented
whenever the condition is encountered. After the
The context flag is
set
whenever the condition is encountered. After the
computation, flags may be checked for informational purposes (for instance, to
determine whether a computation was exact). After checking the flags, be sure to
clear all flags before starting the next computation.
...
...
Lib/decimal.py
Dosyayı görüntüle @
86173daf
...
...
@@ -3411,7 +3411,7 @@ class Context(object):
traps - If traps[exception] = 1, then the exception is
raised when it is caused. Otherwise, a value is
substituted in.
flags - When an exception is caused, flags[exception] is
incremented
.
flags - When an exception is caused, flags[exception] is
set
.
(Whether or not the trap_enabler is set)
Should be reset by user of Decimal instance.
Emin - Minimum exponent
...
...
@@ -3477,16 +3477,16 @@ class Context(object):
"""Handles an error
If the flag is in _ignored_flags, returns the default response.
Otherwise, it
incremen
ts the flag, then, if the corresponding
Otherwise, it
se
ts the flag, then, if the corresponding
trap_enabler is set, it reaises the exception. Otherwise, it returns
the default value after
incremen
ting the flag.
the default value after
set
ting the flag.
"""
error
=
_condition_map
.
get
(
condition
,
condition
)
if
error
in
self
.
_ignored_flags
:
# Don't touch the flag
return
error
()
.
handle
(
self
,
*
args
)
self
.
flags
[
error
]
+
=
1
self
.
flags
[
error
]
=
1
if
not
self
.
traps
[
error
]:
# The errors define how to handle themselves.
return
condition
()
.
handle
(
self
,
*
args
)
...
...
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