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 ammar2
Recipients ammar2, princykatlana
Date 2020-08-27.16:17:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598545077.29.0.325986719305.issue41650@roundup.psfhosted.org>
In-reply-to
Content
.pyc files aren't meant to be portable, they contain raw bytecode and data specific to the version of Python they were compiled on. For example, search for "Changed in version 3.6" here and you'll see all the little changes to the bytecode format: https://docs.python.org/3/library/dis.html

You'll have to compile your python source code on 3.6 if you intend to run it on a 3.6 interpreter.
History
Date User Action Args
2020-08-27 16:17:57ammar2setrecipients: + ammar2, princykatlana
2020-08-27 16:17:57ammar2setmessageid: <1598545077.29.0.325986719305.issue41650@roundup.psfhosted.org>
2020-08-27 16:17:57ammar2linkissue41650 messages
2020-08-27 16:17:57ammar2create