diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-09 23:18:21 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-09 23:18:21 (GMT) |
commit | 703e2c153b95cd0b63788036ae803fd1862ac223 (patch) | |
tree | 1f97092e3076bbb979fc05c3bd38458ab61288f2 /Mac/scripts | |
parent | 316ba5d2dae38e62f97c7f0f778b73eef6b8437c (diff) | |
download | cpython-703e2c153b95cd0b63788036ae803fd1862ac223.zip cpython-703e2c153b95cd0b63788036ae803fd1862ac223.tar.gz cpython-703e2c153b95cd0b63788036ae803fd1862ac223.tar.bz2 |
Changed CW signature and fixed .as/.hqx creator/type
Diffstat (limited to 'Mac/scripts')
-rw-r--r-- | Mac/scripts/fixfiletypes.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/scripts/fixfiletypes.py b/Mac/scripts/fixfiletypes.py index 1d1b115..455f7e3 100644 --- a/Mac/scripts/fixfiletypes.py +++ b/Mac/scripts/fixfiletypes.py @@ -14,10 +14,10 @@ import sys list = [ ('.py', 'PYTH', 'TEXT'), ('.pyc', 'PYTH', 'PYC '), - ('.c', 'MPCC', 'TEXT'), - ('.h', 'MPCC', 'TEXT'), - ('.as', 'TEXT', 'ToyS'), - ('.hqx', 'TEXT', 'BnHq') + ('.c', 'CWIE', 'TEXT'), + ('.h', 'CWIE', 'TEXT'), + ('.as', 'ToyS', 'TEXT'), + ('.hqx', 'BnHq', 'TEXT') ] def walktree(name, change): |