cvsdist f79a121
--- Python-2.3.4/Lib/test/test_re.py			2004-04-20 23:32:33.000000000 +0200
cvsdist f79a121
+++ Python-2.3.4/Lib/test/test_re.py.lib64-regex	2004-05-29 17:36:52.000000000 +0200
cvsdist f79a121
@@ -497,6 +497,15 @@
cvsdist f79a121
         self.assert_(re.compile('bug_926075') is not
cvsdist f79a121
                      re.compile(eval("u'bug_926075'")))
cvsdist f79a121
 
cvsdist f79a121
+    def test_bug_931848(self):
cvsdist f79a121
+        try:
cvsdist f79a121
+            unicode
cvsdist f79a121
+        except NameError:
cvsdist f79a121
+            pass
cvsdist f79a121
+        pattern = eval('u"[\u002E\u3002\uFF0E\uFF61]"')
cvsdist f79a121
+        self.assertEqual(re.compile(pattern).split("a.b.c"),
cvsdist f79a121
+                         ['a','b','c'])
cvsdist f79a121
+
cvsdist f79a121
 def run_re_tests():
cvsdist f79a121
     from test.re_tests import benchmarks, tests, SUCCEED, FAIL, SYNTAX_ERROR
cvsdist f79a121
     if verbose: