cython-devel

diff Cython/Distutils/extension.py @ 4256:b816b03ff502

Make __new__ -> __cinit__ into an error, fix compiler crash.
author Robert Bradshaw <robertwb@math.washington.edu>
date Tue Dec 21 02:09:22 2010 -0800 (17 months ago)
parents 9183be31b2cd
children
line diff
1.1 --- a/Cython/Distutils/extension.py Sun Sep 19 00:44:06 2010 +0200 1.2 +++ b/Cython/Distutils/extension.py Tue Dec 21 02:09:22 2010 -0800 1.3 @@ -31,7 +31,7 @@ 1.4 put generated C files in temp directory. 1.5 pyrex_gen_pxi : boolean 1.6 generate .pxi file for public declarations 1.7 - pyrex_debug : boolean 1.8 + pyrex_gdb : boolean 1.9 generate Cython debug information for this extension for cygdb 1.10 """ 1.11 1.12 @@ -58,7 +58,7 @@ 1.13 pyrex_cplus = 0, 1.14 pyrex_c_in_temp = 0, 1.15 pyrex_gen_pxi = 0, 1.16 - pyrex_debug = False, 1.17 + pyrex_gdb = False, 1.18 **kw): 1.19 1.20 _Extension.Extension.__init__(self, name, sources, 1.21 @@ -84,7 +84,7 @@ 1.22 self.pyrex_cplus = pyrex_cplus 1.23 self.pyrex_c_in_temp = pyrex_c_in_temp 1.24 self.pyrex_gen_pxi = pyrex_gen_pxi 1.25 - self.pyrex_debug = pyrex_debug 1.26 + self.pyrex_gdb = pyrex_gdb 1.27 1.28 # class Extension 1.29