about summary refs log tree commit diff
path: root/src/libcore/unicode/unicode.py
diff options
context:
space:
mode:
authorDavid Corbett <corbett.dav@husky.neu.edu>2018-06-17 12:58:01 -0400
committerDavid Corbett <corbett.dav@husky.neu.edu>2018-06-17 13:47:47 -0400
commit5150ff0c729b5af88da8f45f15bef1b95ba70c08 (patch)
treebc74fce32b5b28fa801b96ef106bba2c876e5f7e /src/libcore/unicode/unicode.py
parent499583aa92203845353c45001e56d0dbe281e270 (diff)
downloadrust-5150ff0c729b5af88da8f45f15bef1b95ba70c08.tar.gz
rust-5150ff0c729b5af88da8f45f15bef1b95ba70c08.zip
Treat gc=No characters as numeric
Diffstat (limited to 'src/libcore/unicode/unicode.py')
-rwxr-xr-xsrc/libcore/unicode/unicode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/unicode/unicode.py b/src/libcore/unicode/unicode.py
index be0970b5444..28a1e01805e 100755
--- a/src/libcore/unicode/unicode.py
+++ b/src/libcore/unicode/unicode.py
@@ -52,7 +52,7 @@ expanded_categories = {
     'Lu': ['LC', 'L'], 'Ll': ['LC', 'L'], 'Lt': ['LC', 'L'],
     'Lm': ['L'], 'Lo': ['L'],
     'Mn': ['M'], 'Mc': ['M'], 'Me': ['M'],
-    'Nd': ['N'], 'Nl': ['N'], 'No': ['No'],
+    'Nd': ['N'], 'Nl': ['N'], 'No': ['N'],
     'Pc': ['P'], 'Pd': ['P'], 'Ps': ['P'], 'Pe': ['P'],
     'Pi': ['P'], 'Pf': ['P'], 'Po': ['P'],
     'Sm': ['S'], 'Sc': ['S'], 'Sk': ['S'], 'So': ['S'],