From: Dag Sverre Seljebotn Date: Wed, 30 Jul 2008 10:11:47 +0000 (+0200) Subject: Better temp prefix (now was not the time for shortening them) X-Git-Tag: 0.9.8.1~49^2~46 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e5928882ddde21149b22146fbc058cc6e44aea28;p=cython.git Better temp prefix (now was not the time for shortening them) --- diff --git a/Cython/Compiler/Naming.py b/Cython/Compiler/Naming.py index eaee163a..5ff72727 100644 --- a/Cython/Compiler/Naming.py +++ b/Cython/Compiler/Naming.py @@ -9,7 +9,7 @@ pyrex_prefix = "__pyx_" -codewriter_temp_prefix = "_tmp" +codewriter_temp_prefix = pyrex_prefix + "t_" temp_prefix = u"__cyt_"