diff options
Diffstat (limited to 'Mac/Modules/ctl/ctlsupport.py')
-rw-r--r-- | Mac/Modules/ctl/ctlsupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/ctl/ctlsupport.py b/Mac/Modules/ctl/ctlsupport.py index d354d94..04fac8b 100644 --- a/Mac/Modules/ctl/ctlsupport.py +++ b/Mac/Modules/ctl/ctlsupport.py @@ -507,8 +507,8 @@ Method = OSErrWeakLinkMethodGenerator # Create and populate the lists functions = [] methods = [] -execfile(INPUTFILE) -execfile('ctledit.py') +exec(open(INPUTFILE).read()) +exec(open('ctledit.py').read()) # add the populated lists to the generator groups for f in functions: module.add(f) |