summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-08-02 10:14:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-08-02 10:14:23 (GMT)
commit345adc43a37cf4640a58cd37df8eaf12f7e55dac (patch)
tree73f2f2382c799ac40da6d1007da9f904c2b27b3b /Misc
parent642d96a6476199840502a1e98d4902f7f4d47e78 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7e2c653..3c06bb8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.