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 Colin Dick
Recipients Colin Dick
Date 2019-04-03.02:14:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1554257642.04.0.214620522086.issue36514@roundup.psfhosted.org>
In-reply-to
Content
-m switch revisited - see issue 27487
Win 10 64bit
python 3.6.3 & 3.7.3

initially running code using py 3.6.3 with this command
python -m vixsd.py
produced
C:\Python36\python.exe: Error while finding module specification for 'vixsd.py' (AttributeError: module 'vixsd' has no attribute '__path__')

updated python from 3.6.3 to 3.7.3

searched & read web
retried the 4 options with & without "-m" & ".py"
results reproduced below

c:\shared\python\vmw>python vixsd
python: can't open file 'vixsd': [Errno 2] No such file or directory

c:\shared\python\vmw>python vixsd.py
A

c:\shared\python\vmw>python -m vixsd
A

c:\shared\python\vmw>python -m vixsd.py
A
C:\Python3\python.exe: Error while finding module specification for 'vixsd.py' (ModuleNotFoundError: __path__ attribute not found on 'vixsd' while trying to find 'vixsd.py')

while this was initially produced thru my ignorance,
handling all 4 options still does not work correctly
appears to have been a problem at least since
issue 27487

cheers team, keep up the great work
ColinDNZ
History
Date User Action Args
2019-04-03 02:14:02Colin Dicksetrecipients: + Colin Dick
2019-04-03 02:14:02Colin Dicksetmessageid: <1554257642.04.0.214620522086.issue36514@roundup.psfhosted.org>
2019-04-03 02:14:02Colin Dicklinkissue36514 messages
2019-04-03 02:14:01Colin Dickcreate