From: Stefan Behnel Date: Sat, 10 May 2008 12:46:37 +0000 (+0200) Subject: it's Cython, not Pyrex :) X-Git-Tag: 0.9.8rc1~48 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a927b5a7c933cef6daade90a9b6b3799e930bc15;p=cython.git it's Cython, not Pyrex :) --- diff --git a/Cython/Utils.py b/Cython/Utils.py index 12ba39ff..20125e24 100644 --- a/Cython/Utils.py +++ b/Cython/Utils.py @@ -28,7 +28,7 @@ def castrate_file(path, st): f.seek(0, 0) f.truncate() f.write( - "#error Do not use this file, it is the result of a failed Pyrex compilation.\n") + "#error Do not use this file, it is the result of a failed Cython compilation.\n") f.close() if st: os.utime(path, (st.st_atime, st.st_mtime))