diff options
author | Guido van Rossum <guido@python.org> | 1996-05-28 23:01:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-28 23:01:05 (GMT) |
commit | dc42b8aa3dc22fc4bbe79eff5f3c1315eddb6388 (patch) | |
tree | 79a775b92adaee2f0dcff23df010d9d4ab00292e /Lib/py_compile.py | |
parent | 6cb84f3cde6b9848b8e9b2a371b0ba1acaff1d70 (diff) | |
download | cpython-dc42b8aa3dc22fc4bbe79eff5f3c1315eddb6388.zip cpython-dc42b8aa3dc22fc4bbe79eff5f3c1315eddb6388.tar.gz cpython-dc42b8aa3dc22fc4bbe79eff5f3c1315eddb6388.tar.bz2 |
change Mac creator/type
Diffstat (limited to 'Lib/py_compile.py')
-rw-r--r-- | Lib/py_compile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/py_compile.py b/Lib/py_compile.py index 3c2809b..2e68ba8 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -27,5 +27,5 @@ def compile(file, cfile = None): fc.close() if os.name == 'mac': import macfs - macfs.FSSpec(cfile).SetCreatorType('PYTH', 'PYC ') - macfs.FSSpec(file).SetCreatorType('PYTH', 'TEXT') + macfs.FSSpec(cfile).SetCreatorType('Pyth', 'PYC ') + macfs.FSSpec(file).SetCreatorType('Pyth', 'TEXT') |