diff options
author | Stefan Behnel <scoder@users.berlios.de> | 2007-09-12 10:15:04 +0200 |
---|---|---|
committer | Stefan Behnel <scoder@users.berlios.de> | 2007-09-12 10:15:04 +0200 |
commit | 974520e57ee34eb739d000001d114c7909916737 (patch) | |
tree | 0042fd14a6ad954ba4177d3910f431b79e90992a /Cython/Compiler/ModuleNode.py | |
parent | 523ba29cc373e0ae6bb135d6f9d8777bc045d318 (diff) | |
parent | a1e807904e241731233ef93b318449b19dc87b21 (diff) | |
download | cython-974520e57ee34eb739d000001d114c7909916737.tar.gz |
merge from 0.9.6.6
Diffstat (limited to 'Cython/Compiler/ModuleNode.py')
-rw-r--r-- | Cython/Compiler/ModuleNode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 1e5f09aeb..7ab2f80e0 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -158,7 +158,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): module_list.append(env) def generate_module_preamble(self, env, cimported_modules, code): - code.putln('/* Generated by Pyrex %s on %s */' % ( + code.putln('/* Generated by Cython %s on %s */' % ( Version.version, time.asctime())) code.putln('') code.putln('#define PY_SSIZE_T_CLEAN') |