From 9f3ecd7ec4b964df05140f60e66c201564d4b17b Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 31 Aug 2013 12:41:35 +0200 Subject: [PATCH] improve Python compatibility during stdlib compilation --HG-- extra : rebase_source : 3925751f19150188e9c65f87aca4039a7d551b7a --- Tools/cystdlib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/cystdlib.py b/Tools/cystdlib.py index a9bf7ee..e28712e 100644 --- a/Tools/cystdlib.py +++ b/Tools/cystdlib.py @@ -20,6 +20,7 @@ from Cython.Compiler import Options # improve Python compatibility by allowing some broken code Options.error_on_unknown_names = False +Options.error_on_uninitialized = False excludes = ['**/test/**/*.py', '**/tests/**/*.py', '**/__init__.py'] broken = [ -- 2.7.4