This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients eric.smith, ezio.melotti, mark.dickinson, vstinner, xtreak
Date 2018-11-20.22:00:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542751243.43.0.788709270274.issue33954@psf.upfronthosting.co.za>
In-reply-to
Content
Minimum reproducer, on Fedora 29:

import locale
locale.setlocale(locale.LC_ALL, 'fr_FR.UTF-8')
print(ascii('{:n}'.format(1.5)))

Current result:

'H,5'

Output with PR 10623:

'1,5'
History
Date User Action Args
2018-11-20 22:00:43vstinnersetrecipients: + vstinner, mark.dickinson, eric.smith, ezio.melotti, xtreak
2018-11-20 22:00:43vstinnersetmessageid: <1542751243.43.0.788709270274.issue33954@psf.upfronthosting.co.za>
2018-11-20 22:00:43vstinnerlinkissue33954 messages
2018-11-20 22:00:43vstinnercreate