-- SRE 0.9.8: now that the bug is fixed, I might as well enable
   the test again...
diff --git a/Lib/test/test_sre.py b/Lib/test/test_sre.py
index 52e5021..342c33d 100644
--- a/Lib/test/test_sre.py
+++ b/Lib/test/test_sre.py
@@ -152,10 +152,8 @@
     assert sre.split("(?::*)", ":a:b::c") == ['', 'a', 'b', 'c']
     assert sre.split("(:)*", ":a:b::c") == ['', ':', 'a', ':', 'b', ':', 'c']
     assert sre.split("([b:]+)", ":a:b::c") == ['', ':', 'a', ':b::', 'c']
-##     print sre.split("(b)|(:+)", ":a:b::c")
-##     print ['', None, ':', 'a', None, ':', '', 'b', None, '', None, '::', 'c']
-##     assert sre.split("(b)|(:+)", ":a:b::c") == \
-##            ['', None, ':', 'a', None, ':', '', 'b', None, '', None, '::', 'c']
+    assert sre.split("(b)|(:+)", ":a:b::c") == \
+           ['', None, ':', 'a', None, ':', '', 'b', None, '', None, '::', 'c']
     assert sre.split("(?:b)|(?::+)", ":a:b::c") == ['', 'a', '', '', 'c']
 except AssertionError:
     raise TestFailed, "sre.split"