Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'args': 0.04; 'importing': 0.04; 'case.': 0.05; "'python": 0.07; 'args)': 0.07; 'pretend': 0.07; 'try:': 0.07; 'python': 0.09; 'cherrypy': 0.09; 'fetch': 0.09; 'imported': 0.09; 'nameerror:': 0.09; 'pep': 0.09; 'spec': 0.09; 'subclass': 0.09; 'subject:command': 0.09; 'url:peps': 0.09; 'cc:addr:python-list': 0.10; 'cases': 0.15; 'slightly': 0.15; "'-m',": 0.16; '(via': 0.16; '...]': 0.16; 'benjamin': 0.16; 'cc:name:python list': 0.16; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'merely': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'somehow.': 0.16; 'tjg': 0.16; 'wrote:': 0.17; 'certainly': 0.17; 'url:dev': 0.17; 'tim': 0.18; '>>>': 0.18; 'equivalent': 0.20; 'sort': 0.21; 'import': 0.21; 'thanks.': 0.21; 'os,': 0.22; 'skip:_ 20': 0.22; 'cc:2**0': 0.23; 'this:': 0.23; 'command': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'looks': 0.26; 'skip:[ 10': 0.26; '(which': 0.26; 'guess': 0.27; 'inspect': 0.29; 'piece': 0.29; 'restart': 0.29; "i'm": 0.29; 'compatible': 0.30; 'code': 0.31; 'url:python': 0.32; 'structure': 0.32; 'loading': 0.33; 'received:192.168.100': 0.33; 'anyone': 0.33; 'knowledge': 0.33; 'entry': 0.33; 'skip:b 20': 0.34; 'whatever': 0.35; 'false': 0.35; 'identified': 0.35; 'something': 0.35; 'really': 0.36; 'except': 0.36; 'but': 0.36; 'url:org': 0.36; 'why': 0.37; 'subject:: ': 0.38; 'skip:o 20': 0.38; 'received:192': 0.39; 'application': 0.40; 'received:192.168': 0.40; 'your': 0.60; "you've": 0.61; 'face': 0.61; 'first': 0.61; 'back': 0.62; 'is.': 0.62; 'information': 0.63; 'talking': 0.66; 'benefit': 0.70; 'from:addr:mail': 0.71; '2013': 0.84; 'brilliant.': 0.84; 'me).': 0.84; 'oscar': 0.84; 'seen.': 0.84; 'to:none': 0.93 Date: Thu, 24 Jan 2013 15:51:33 +0000 From: Tim Golden User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 CC: Python List Subject: Re: Retrieving the full command line References: <50FE5AC7.3050909@timgolden.me.uk> <50ff24e8$0$29994$c3e8da3$5496439d@news.astraweb.com> <50ff5ffc$0$29877$c3e8da3$5496439d@news.astraweb.com> <5100bd49$0$29877$c3e8da3$5496439d@news.astraweb.com> <51011340.6020309@timgolden.me.uk> <51013B0C.6000309@timgolden.me.uk> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 57 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1359042808 news.xs4all.nl 6941 [2001:888:2000:d::a6]:56615 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:37603 On 24/01/2013 15:28, Oscar Benjamin wrote: > On 24 January 2013 13:45, Tim Golden wrote: >> On 24/01/2013 11:30, Oscar Benjamin wrote: >>> I don't really understand what your spec is. Why do you need to >>> inspect this information from sys.argv? Can you not just always use >>> 'python -m pkg' as your entry point? >> > [SNIP] >> >> For completeness, I'm talking about the cherrypy Autoreloader which >> attempts to restart (via execv) whatever process was responsible for >> loading it in the first place, via an identical or equivalent command >> line. The current (cherrypy) code simply joins sys.executable and >> sys.argv but this fails in the face of python -m as we have seen. >> >> The cherrypy package has no especial knowledge of the structure of the >> application which imported it and so must piece together the command >> line somehow. Clearly, I can take various approaches of the sort >> which you've outlined, or subclass the reloader, or fetch the original >> command line from the OS, etc. It's not that this is a showstopper, >> merely slightly surprising. (To me). > > Ok I understand. Then I guess you want: > > import __main__ > pkg = __main__.__package__ Brilliant. Never thought of importing __main__. Thanks. For the benefit of anyone still watching, the code (which has to be compatible back to 2.3) looks something like this: import __main__ # [.. .snip ...] try: is_package = bool(__main__.__package__) except NameError: is_package = False if is_package: args = [sys.executable, '-m', __main__.__package__] + sys.argv[1:] else: args = [sys.executable] + sys.argv os.chdir(_startup_cwd) # avoids relative/absolute issues os.execv(args[0], args) I don't pretend it's foolproot, but it certainly works for my particular case. Nor have I considered it against all the cases identified in PEP 432: http://www.python.org/dev/peps/pep-0432/#configuring-sys-argv TJG