bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)

This commit is contained in:
Inada Naoki 2020-01-20 12:45:50 +09:00 committed by GitHub
parent d8ef64422a
commit e96d954527
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1,2 @@
Removes trailing space in formatted currency with `international=True` and a locale with symbol following value.
E.g. `locale.currency(12.34, international=True)` returned `'12,34 EUR '` instead of `'12,34 EUR'`.