summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-04-20 21:11:11 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2004-04-20 21:11:11 (GMT)
commit0f5bf1ebdd426fb17f92d00b319a55b014021c30 (patch)
tree029762db31287daade4951c75dada746b19e3bb5 /Misc
parent1660e0c1f162efcc2a19e07ca87193e071bca311 (diff)
downloadcpython-0f5bf1ebdd426fb17f92d00b319a55b014021c30.zip
cpython-0f5bf1ebdd426fb17f92d00b319a55b014021c30.tar.gz
cpython-0f5bf1ebdd426fb17f92d00b319a55b014021c30.tar.bz2
SF #926075: Fixed the bug that returns a wrong pattern object for
a string or unicode object in sre.compile() when a different type pattern with the same value exists.
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 2fb6023..b713316 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -303,6 +303,10 @@ Extension modules
Library
-------
+- Bug #926075: Fixed a bug that returns a wrong pattern object
+ for a string or unicode object in sre.compile() when a different
+ type pattern with the same value exists.
+
- Added countcallers arg to trace.Trace class (--trackcalls command line arg
when run from the command prompt).