diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-08-26 20:46:49 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-08-26 20:46:49 +0200 |
commit | 298131a44896a4fec1ea829814ad52409d59aba5 (patch) | |
tree | 95f1a1123071fdbc602fe25e7514ccd09500a028 /Lib/decimal.py | |
parent | d84fd73de2823afd8da5c3e5937d51f7ecad8a34 (diff) | |
download | cpython-git-298131a44896a4fec1ea829814ad52409d59aba5.tar.gz |
Issue #22090: Fix '%' formatting for infinities and NaNs.
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index 5b984731b2..e11f1a0082 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -3769,6 +3769,8 @@ class Decimal(object): if self._is_special: sign = _format_sign(self._sign, spec) body = str(self.copy_abs()) + if spec['type'] == '%': + body += '%' return _format_align(sign, body, spec) # a type of None defaults to 'g' or 'G', depending on context |