From 825fe1342f14df7686a8489f825cd3933a880886 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 4 Nov 2012 19:36:18 +0100 Subject: [PATCH] more special casing of stdlib modules, make sure we enable function 'binding' --- Tools/cystdlib.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tools/cystdlib.py b/Tools/cystdlib.py index d55d349..559fbb3 100644 --- a/Tools/cystdlib.py +++ b/Tools/cystdlib.py @@ -31,6 +31,7 @@ broken = [ default_directives = dict( auto_cpdef=True, + binding=True, set_initial_path='SOURCEFILE') special_directives = [ @@ -44,6 +45,8 @@ special_directives = [ 'plat-linux/TYPES.py', 'tkinter/_fix.py', 'lib2to3/refactor.py' + 'webbrowser.py', + 'multiprocessing/forking.py', ], dict(auto_cpdef=False)), ] -- 2.7.4