Globally ignore compiled Python files.

The first time a `.py` file is run, or any time it's been modified, Python
creates a `.pyc` file containing a bytecode representation.

These bytecode files should always be ignored by Git, since keeping them
updated in a repo would be time consuming and would serve no purpose.
This commit is contained in:
George Brocklehurst 2016-01-11 08:09:48 -05:00
parent fe31b3943b
commit 2ebe894793
No known key found for this signature in database
GPG key ID: 0C643A97B51FFCFB

View file

@ -9,3 +9,4 @@ tags
!tags/
tmp/**/*
!tmp/cache/.keep
*.pyc