This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ncoghlan
Recipients BreamoreBoy, bethard, ncoghlan, paul.j3, peter.otten, tebeka
Date 2014-08-26.07:47:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409039227.0.0.0396105496538.issue22240@psf.upfronthosting.co.za>
In-reply-to
Content
If you have:

  <curdir>
    /subdir
        __main__.py

Then in 3.3+, both of the following will work:

    python3 subdir
    python3 -m subdir

They do slightly different things, though.

In the first case, "subdir" will be added to sys.path, and then python will execute the equivalent of "python3 -m __main__"

In the second case, the current directory will be added to sys.path, and python will execute the equivalent of "python3 -m subdir.__main__"

The first case is the directory execution support that was added way back in Python 2.6.

The second case is a combination of the package execution support added in Python 2.7/3.1 and the implicit namespace packages support that was added in Python 3.3.

Interesting find - the possibility of the latter situation hadn't occurred to me before :)
History
Date User Action Args
2014-08-26 07:47:07ncoghlansetrecipients: + ncoghlan, tebeka, peter.otten, bethard, BreamoreBoy, paul.j3
2014-08-26 07:47:07ncoghlansetmessageid: <1409039227.0.0.0396105496538.issue22240@psf.upfronthosting.co.za>
2014-08-26 07:47:06ncoghlanlinkissue22240 messages
2014-08-26 07:47:06ncoghlancreate