[Patches] [ python-Patches-1038911 ] OS X: Can't use #!/usr/bin/pythonw

SourceForge.net noreply at sourceforge.net
Sat Oct 2 11:43:34 CEST 2004


Patches item #1038911, was opened at 2004-10-02 02:40
Message generated for change (Comment added) made by n8gray
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1038911&group_id=5470

>Category: Macintosh
>Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: Nathan Gray (n8gray)
Assigned to: Nobody/Anonymous (nobody)
Summary: OS X: Can't use #!/usr/bin/pythonw

Initial Comment:
At the moment, on OS X /usr/bin/pythonw2.x is a simple sh script 
that exec's a python interpreter within a valid OS X application 
bundle.  The problem is that this prevents python scripts from 
using pythonw in the #! line.  Darwin won't allow a script to act as 
an interpreter in a #! line.

This patch replaces the shell script with a simple C program that 
does the same thing -- it just calls execv on the python interpreter 
within the OS X app bundle.  Since it is a compiled executable it is 
allowed to act as an interpreter in #! lines.

Your patch guidelines said you preferred multiple patches to be 
concatenated in a single file.  My patch consists of a Makefile 
change and a new file, dist/src/Mac/OSX/pythonw.c.  I've included 
both in the text file attached to this report.  It would probably be 
prudent for somebody to review the Makefile change, since it's 
always tricky to find the right way to put a new file in someone 
else's build process.

Thank you,
-Nathan

----------------------------------------------------------------------

>Comment By: Nathan Gray (n8gray)
Date: 2004-10-02 02:43

Message:
Logged In: YES 
user_id=121553

By the way, the patch is against CVS head.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1038911&group_id=5470


More information about the Patches mailing list