cleanup
authorStefan Behnel <scoder@users.berlios.de>
Sat, 10 Jan 2009 14:45:08 +0000 (15:45 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 10 Jan 2009 14:45:08 +0000 (15:45 +0100)
Cython/Compiler/Errors.py

index 821ef01fc4260d83300452dafafa00245099f225..1e7a44a3a2bd2f1635ed36115090eafcab8e553f 100644 (file)
@@ -75,9 +75,9 @@ class CompilerCrash(CompileError):
         if context:
             message = "Compiler crash in " + context + message
         if stacktrace:
-            import traceback, sys
+            import traceback
             message += (
-                u'\n\nCompiler crash traceback up to this point:\n' +
+                u'\n\nCompiler crash traceback from this point on:\n' +
                 u''.join(traceback.format_tb(stacktrace)))
         if cause:
             if not stacktrace: