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 proski
Recipients proski
Date 2015-10-03.00:52:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443833531.37.0.101836027368.issue25303@psf.upfronthosting.co.za>
In-reply-to
Content
$ echo "'''Simple script'''" >simple-script
$ PYTHONDONTWRITEBYTECODE=1 python3 -B -m py_compile simple-script
$ ls __pycache__
simple-scriptcpython-35.pyc

py_compile should recognize when the user doesn't want the bytecode to be produced. Otherwise, it's not usable in makefiles for a quick code check.

See also http://stackoverflow.com/questions/4284313/
History
Date User Action Args
2015-10-03 00:52:11proskisetrecipients: + proski
2015-10-03 00:52:11proskisetmessageid: <1443833531.37.0.101836027368.issue25303@psf.upfronthosting.co.za>
2015-10-03 00:52:11proskilinkissue25303 messages
2015-10-03 00:52:10proskicreate