summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-07-28 17:22:36 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-07-28 17:22:36 (GMT)
commit1f268285ff810681612c8f7c91c1faeb70535f52 (patch)
tree8531e2c66af998125d53694c82626e8a1a204364 /Misc
parent6bd13fbbc8b4917023d124d6523685d456a8e92a (diff)
downloadcpython-1f268285ff810681612c8f7c91c1faeb70535f52.zip
cpython-1f268285ff810681612c8f7c91c1faeb70535f52.tar.gz
cpython-1f268285ff810681612c8f7c91c1faeb70535f52.tar.bz2
Issue #6561: '\d' in a regular expression should match only Unicode
character category [Nd], not [No].
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 83aabb3..aa4cfd9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,10 @@ Library
Extension Modules
-----------------
+- Issue #6561: '\d' in a regex now matches only characters with
+ Unicode category 'Nd' (Number, Decimal Digit). Previously it also
+ matched characters with category 'No'.
+
- Issue #4509: Array objects are no longer modified after an operation
failing due to the resize restriction in-place when the object has exported
buffers.