From: Stefan Behnel Date: Sat, 10 Jan 2009 14:45:08 +0000 (+0100) Subject: cleanup X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ef7f23b9fbf41504a0f7744e42b068bb281be0b;p=cython.git cleanup --- diff --git a/Cython/Compiler/Errors.py b/Cython/Compiler/Errors.py index 821ef01f..1e7a44a3 100644 --- a/Cython/Compiler/Errors.py +++ b/Cython/Compiler/Errors.py @@ -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: