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 Decorater
Recipients Decorater, docs@python
Date 2016-08-13.15:17:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471101470.06.0.092616932845.issue27753@psf.upfronthosting.co.za>
In-reply-to
Content
py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data.

Although I need something that can allow me to import byte like objects if the object contains valid python script data.
(basically it would have to act as a import unless I have to exec the data in it which would be totally bad as it would not be able to retain all of the data.

Long story short I need a way to import the data returned from the dec_script() function in this: https://bpaste.net/show/694c231c566c
History
Date User Action Args
2016-08-13 15:17:50Decoratersetrecipients: + Decorater, docs@python
2016-08-13 15:17:50Decoratersetmessageid: <1471101470.06.0.092616932845.issue27753@psf.upfronthosting.co.za>
2016-08-13 15:17:50Decoraterlinkissue27753 messages
2016-08-13 15:17:49Decoratercreate