From: Stefan Behnel Date: Tue, 6 Nov 2012 08:22:42 +0000 (+0100) Subject: disable auto_cpdef for stdlib compilation - too many failures X-Git-Tag: 0.18b1~167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=265b8bad6e7cc4a8132114a2e5f256b7b64d9e2e;p=platform%2Fupstream%2Fpython-cython.git disable auto_cpdef for stdlib compilation - too many failures --- diff --git a/Tools/cystdlib.py b/Tools/cystdlib.py index 2cd1ae2..e9e5c1c 100644 --- a/Tools/cystdlib.py +++ b/Tools/cystdlib.py @@ -32,7 +32,7 @@ broken = [ ] default_directives = dict( - auto_cpdef=True, + auto_cpdef=False, # enable when it's safe, see long list of failures below binding=True, set_initial_path='SOURCEFILE') @@ -72,8 +72,7 @@ special_directives = [ 'types.py', ], dict(auto_cpdef=False)), ] - -#del special_directives[:] +del special_directives[:] # currently unused def build_extensions(includes='**/*.py', excludes=excludes+broken,