commit | e96d954527aa376457451e32a9d75ae3ea9ab4bd | [log] [tgz] |
---|---|---|
author | Inada Naoki <songofacandy@gmail.com> | Mon Jan 20 12:45:50 2020 +0900 |
committer | GitHub <noreply@github.com> | Mon Jan 20 12:45:50 2020 +0900 |
tree | d5e8e7d8d79097d8d420d65fa055cef116f72934 | |
parent | d8ef64422a75f40cecdb1a7ee43492607d3daaf6 [diff] [blame] |
bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)
diff --git a/Lib/locale.py b/Lib/locale.py index dd8a085..1a4e9f6 100644 --- a/Lib/locale.py +++ b/Lib/locale.py
@@ -279,6 +279,8 @@ if precedes: s = smb + (separated and ' ' or '') + s else: + if international and smb[-1] == ' ': + smb = smb[:-1] s = s + (separated and ' ' or '') + smb sign_pos = conv[val<0 and 'n_sign_posn' or 'p_sign_posn']