mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Lots of restructuring, mostly suggested by Bill Bumgarner. Main
externally visible difference is that the factory defaults are now in a plist file in the bundle, in stead of being hard-coded in the application.
This commit is contained in:
parent
b5c980b802
commit
2095c06cec
6 changed files with 242 additions and 57 deletions
79
Mac/OSX/PythonLauncher/factorySettings.plist
Normal file
79
Mac/OSX/PythonLauncher/factorySettings.plist
Normal file
|
@ -0,0 +1,79 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Python GUI Script</key>
|
||||
<dict>
|
||||
<key>debug</key>
|
||||
<false/>
|
||||
<key>inspect</key>
|
||||
<false/>
|
||||
<key>interpreter_list</key>
|
||||
<array>
|
||||
<string>/usr/local/bin/pythonw</string>
|
||||
<string>/sw/bin/pythonw</string>
|
||||
<string>/Library/Frameworks/Python.framework/Versions/Current/Resources/Python.app/Contents/MacOS/python</string>
|
||||
<string>/usr/bin/pythonw</string>
|
||||
<string>/Applications/MacPython-OSX/python-additions/Python.app/Contents/MacOS/python</string>
|
||||
</array>
|
||||
<key>nosite</key>
|
||||
<false/>
|
||||
<key>optimize</key>
|
||||
<false/>
|
||||
<key>others</key>
|
||||
<string></string>
|
||||
<key>verbose</key>
|
||||
<false/>
|
||||
<key>with_terminal</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>Python Script</key>
|
||||
<dict>
|
||||
<key>debug</key>
|
||||
<false/>
|
||||
<key>inspect</key>
|
||||
<false/>
|
||||
<key>interpreter_list</key>
|
||||
<array>
|
||||
<string>/usr/local/bin/python</string>
|
||||
<string>/sw/bin/python</string>
|
||||
<string>/Library/Frameworks/Python.framework/Versions/Current/bin/python</string>
|
||||
<string>/usr/bin/python</string>
|
||||
</array>
|
||||
<key>nosite</key>
|
||||
<false/>
|
||||
<key>optimize</key>
|
||||
<false/>
|
||||
<key>others</key>
|
||||
<string></string>
|
||||
<key>verbose</key>
|
||||
<false/>
|
||||
<key>with_terminal</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>Python Bytecode Document</key>
|
||||
<dict>
|
||||
<key>debug</key>
|
||||
<false/>
|
||||
<key>inspect</key>
|
||||
<false/>
|
||||
<key>interpreter_list</key>
|
||||
<array>
|
||||
<string>/usr/local/bin/python</string>
|
||||
<string>/sw/bin/python</string>
|
||||
<string>/Library/Frameworks/Python.framework/Versions/Current/bin/python</string>
|
||||
<string>/usr/bin/python</string>
|
||||
</array>
|
||||
<key>nosite</key>
|
||||
<false/>
|
||||
<key>optimize</key>
|
||||
<false/>
|
||||
<key>others</key>
|
||||
<string></string>
|
||||
<key>verbose</key>
|
||||
<false/>
|
||||
<key>with_terminal</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
Loading…
Add table
Add a link
Reference in a new issue