removed dead code from test
authorStefan Behnel <scoder@users.berlios.de>
Sun, 18 Apr 2010 14:45:41 +0000 (16:45 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 18 Apr 2010 14:45:41 +0000 (16:45 +0200)
tests/run/withstat.pyx

index 2d5eda511dc67c4662003c2c8b72c7e4ca00db98..ff6eb5ec0dd07eaa7511e420145934d109ca20f8 100644 (file)
@@ -1,11 +1,6 @@
 from __future__ import with_statement
 
 
-import sys
-if sys.version_info < (2,5):
-    __doc__ = __doc__.replace(u"exit <type 'type'> <type 'MyException'>",
-                              u"exit <type 'classobj'> <type 'instance'>")
-
 def typename(t):
     return u"<type '%s'>" % type(t).__name__