diff options
Diffstat (limited to 'Mac/Modules/file/filesupport.py')
-rw-r--r-- | Mac/Modules/file/filesupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/file/filesupport.py b/Mac/Modules/file/filesupport.py index 37aeb50..de45ed4 100644 --- a/Mac/Modules/file/filesupport.py +++ b/Mac/Modules/file/filesupport.py @@ -340,7 +340,7 @@ PyMac_INIT_TOOLBOX_OBJECT_CONVERT(FSSpec, PyMac_GetFSSpec); PyMac_INIT_TOOLBOX_OBJECT_CONVERT(FSRef, PyMac_GetFSRef); """ -execfile(string.lower(MODPREFIX) + 'typetest.py') +exec(open(string.lower(MODPREFIX) + 'typetest.py').read()) # Our object types: class FSCatalogInfoDefinition(PEP253Mixin, ObjectDefinition): @@ -806,7 +806,7 @@ functions = [] alias_methods = [] fsref_methods = [] fsspec_methods = [] -execfile(INPUTFILE) +exec(open(INPUTFILE).read()) # Manual generators: FSRefMakePath_body = """ |