diff options
Diffstat (limited to 'Mac/Modules/osa')
-rw-r--r-- | Mac/Modules/osa/osascan.py | 2 | ||||
-rw-r--r-- | Mac/Modules/osa/osasupport.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Modules/osa/osascan.py b/Mac/Modules/osa/osascan.py index fb8196f..8bad4b7 100644 --- a/Mac/Modules/osa/osascan.py +++ b/Mac/Modules/osa/osascan.py @@ -18,7 +18,7 @@ def main(): scanner.close() scanner.gentypetest(SHORT+"typetest.py") print "=== Testing definitions output code ===" - execfile(defsoutput, {}, {}) + exec(open(defsoutput).read(), {}, {}) print "=== Done scanning and generating, now importing the generated code... ===" exec "import " + SHORT + "support" print "=== Done. It's up to you to compile it now! ===" diff --git a/Mac/Modules/osa/osasupport.py b/Mac/Modules/osa/osasupport.py index 8369932..3afdf4e 100644 --- a/Mac/Modules/osa/osasupport.py +++ b/Mac/Modules/osa/osasupport.py @@ -88,12 +88,12 @@ Function = OSErrWeakLinkFunctionGenerator Method = OSErrWeakLinkMethodGenerator # Test which types we are still missing. -execfile(string.lower(MODPREFIX) + 'typetest.py') +exec(open(string.lower(MODPREFIX) + 'typetest.py').read()) # Create and populate the lists functions = [] methods = [] -execfile(INPUTFILE) +exec(open(INPUTFILE).read()) # add the populated lists to the generator groups # (in a different wordl the scan program would generate this) |