1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 08:18:50 -05:00

Merge pull request #17 from Michaelfonzolo/master

Created Python.gitattributes
This commit is contained in:
Alexander Karatarakis 2015-01-13 23:21:31 +02:00
commit 277a279066

23
Python.gitattributes Normal file
View File

@ -0,0 +1,23 @@
# Basic .gitattributes for a python repo.
# Source files
# ============
*.pxd text
*.py text
*.py3 text
*.pyw text
*.pyx text
# Binary files
# ============
*.db binary
*.p binary
*.pkl binary
*.pyc binary
*.pyd binary
*.pyo binary
# Note: .db, .p, and .pkl files are associated
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).