cpython/Mac/IDLE
Ronald Oussoren 92919a66d2 Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX.
The previous implementation used execv(2) to run the real interpreter, which means that
you cannot use the arch(1) tool to select the architecture you want to use for a
universal build because that only affects the python/pythonw wrapper and not the actual
interpreter.

The new version uses posix_spawnv with a number of OSX-specific options that ensure that
the real interpreter is started using the same CPU architecture as the wrapper, and that
means that 'arch -ppc python' now actually works.

I've also changed the way that the wrapper looks for the framework: it is now linked to
the framework rather than hardcoding the framework path. This should make it easier to
provide pythonw support in tools like virtualenv.
2009-12-24 13:30:58 +00:00
..
Info.plist.in Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. 2009-12-24 13:30:58 +00:00
Makefile.in Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. 2009-12-24 13:30:58 +00:00
config-extensions.def And the last bit: move IDLE one level up and adjust makefiles 2006-06-07 19:06:01 +00:00
config-main.def Fix bug #1517990: IDLE keybindings on OSX 2006-07-25 20:28:55 +00:00
idlemain.py Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. 2009-12-24 13:30:58 +00:00