diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-08-02 10:14:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-08-02 10:14:23 (GMT) |
commit | 345adc43a37cf4640a58cd37df8eaf12f7e55dac (patch) | |
tree | 73f2f2382c799ac40da6d1007da9f904c2b27b3b /Misc | |
parent | 642d96a6476199840502a1e98d4902f7f4d47e78 (diff) | |
download | cpython-345adc43a37cf4640a58cd37df8eaf12f7e55dac.zip cpython-345adc43a37cf4640a58cd37df8eaf12f7e55dac.tar.gz cpython-345adc43a37cf4640a58cd37df8eaf12f7e55dac.tar.bz2 |
Issue #6595: Allow Decimal constructor to accept non-European decimal digits, as recommended by the specification.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -63,6 +63,10 @@ C-API Library ------- +- Issue #6595: The Decimal constructor now allows arbitrary Unicode + decimal digits in input, as recommended by the standard. Previously + it was restricted to accepting [0-9]. + - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT DO/DONT correctly. |