From: Hye-Shik Chang Date: Tue, 20 Apr 2004 21:32:33 +0000 (+0000) Subject: SF #926075: Fixed the bug that returns a wrong pattern object for X-Git-Tag: v2.3.4c1~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05bacbdc4e90da6197791b1e4adac6f82bec7183;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index f7248062a2ab..fb8b175df8ed 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -489,6 +489,14 @@ class ReTests(unittest.TestCase): self.assertEqual([item.group(0) for item in iter], [":", "::", ":::"]) + def test_bug_926075(self): + try: + unicode + except NameError: + return # no problem if we have no unicode + self.assert_(re.compile('bug_926075') is not + re.compile(eval("u'bug_926075'"))) + def run_re_tests(): from test.re_tests import benchmarks, tests, SUCCEED, FAIL, SYNTAX_ERROR if verbose: