<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Tue, 16 Feb 2016 at 20:59 Mike Kaplinskiy <<a href="mailto:mike.kaplinskiy@gmail.com">mike.kaplinskiy@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hey folks,<div><br></div><div>I hope this is the right list for this sort of thing (python-ideas seemed more far-fetched).</div><div><br></div><div>For some context: there is currently a issue with pex that causes sys.modules lookups to stop working for __main__. In turns this makes unittest.run() & pkg_resources.resource_* fail. The root cause is that pex uses runpy.run_module with alter_sys=False. The fix should be to just pass alter_sys=True, but that changes sys.argv[0] and various existing pex files depend on that being the pex file. You can read more at <a href="https://github.com/pantsbuild/pex/pull/211" target="_blank">https://github.com/pantsbuild/pex/pull/211</a> .</div><div><br></div><div>Conservatively, I'd like to propose adding an argument to disable this behavior. The current behavior breaks a somewhat reasonable invariant that you can restart your program via `os.execv([sys.executable] + sys.argv)`. Moreover it might be user-friendly to add a `argv=sys.argv[1:]` argument to set & restore the full arguments to the module, where `argv=None` disables argv[0] switching.</div><div><br></div><div>What do you think?</div></div></blockquote><div><br></div><div>This probably is best served as a feature request on <a href="http://bugs.python.org">bugs.python.org</a> since it's not asking for some massive change or new feature but just a minor tweak to a module. </div></div></div>