From: Robert Bradshaw Date: Tue, 2 Feb 2010 12:06:14 +0000 (-0800) Subject: Enable safe type inferance by default. X-Git-Tag: 0.13.beta0~356 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c585280a28f905beb005ba007cb125b3fbfffdb5;p=cython.git Enable safe type inferance by default. --- diff --git a/Cython/Compiler/Options.py b/Cython/Compiler/Options.py index 7970ddeb..4989eee0 100644 --- a/Cython/Compiler/Options.py +++ b/Cython/Compiler/Options.py @@ -62,7 +62,7 @@ directive_defaults = { 'ccomplex' : False, # use C99/C++ for complex types and arith 'callspec' : "", 'profile': False, - 'infer_types': False, + 'infer_types': None, 'infer_types.verbose': False, 'autotestdict': True,