Apress / low-level-programming

Source code for 'Low-Level Programming' by Igor Zhirkov
http://www.apress.com/9781484224021
Other
768 stars 200 forks source link

There is no need in having `pyc` files present in the repository #71

Open iddm opened 6 years ago

iddm commented 6 years ago

These files are meant to be created and used by the user interpreter on user machine. It is quite big chance that these files will be deleted by python interpreter itself because of incompatibility (different python interpreters may produce different byte code). If you look at python repositories, you will never see pyc files commited.

As of termcolor.pyc, I suggest to provide with source code instead.