diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-11 13:01:07 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-11 13:01:07 (GMT) |
commit | 0b60772ee9c32f9baa0d739aa603743ca9c511f6 (patch) | |
tree | e3d85c93956449df206b954efd1d3c89ef4b9a32 /Mac/OSXResources | |
parent | be67f8a5bfbf7a79567a400fcd2fad324eb65dd6 (diff) | |
download | cpython-0b60772ee9c32f9baa0d739aa603743ca9c511f6.zip cpython-0b60772ee9c32f9baa0d739aa603743ca9c511f6.tar.gz cpython-0b60772ee9c32f9baa0d739aa603743ca9c511f6.tar.bz2 |
- Removed the . in the extensions.
- Allow any file to be dropped on the interpreter (for file args).
Diffstat (limited to 'Mac/OSXResources')
-rw-r--r-- | Mac/OSXResources/app/Info.plist | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Mac/OSXResources/app/Info.plist b/Mac/OSXResources/app/Info.plist index f201270..da65acd 100644 --- a/Mac/OSXResources/app/Info.plist +++ b/Mac/OSXResources/app/Info.plist @@ -9,7 +9,7 @@ <dict> <key>CFBundleTypeExtensions</key> <array> - <string>.py</string> + <string>py</string> </array> <key>CFBundleTypeIconFile</key> <string>PythonSource.icns</string> @@ -25,7 +25,7 @@ <dict> <key>CFBundleTypeExtensions</key> <array> - <string>.pyc</string> + <string>pyc</string> </array> <key>CFBundleTypeIconFile</key> <string>PythonCompiled.icns</string> @@ -36,6 +36,16 @@ <string>PYC</string> </array> <key>CFBundleTypeRole</key> + <string>Shell</string> + </dict> + <dict> + <key>CFBundleTypeOSTypes</key> + <array> + <string>****</string> + <string>fold</string> + <string>disk</string> + </array> + <key>CFBundleTypeRole</key> <string>Viewer</string> </dict> </array> |