Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 1 | [patterns] |
Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 2 | |
Antoine Pitrou | 59db1f3 | 2011-02-25 14:32:24 | [diff] [blame] | 3 | # Non human-editable files are binary |
4 | |||||
5 | **.dsp = BIN | ||||
6 | **.dsw = BIN | ||||
7 | **.mk = BIN | ||||
8 | **.sln = BIN | ||||
9 | **.vcproj = BIN | ||||
10 | **.vsprops = BIN | ||||
Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 11 | |
12 | **.aif = BIN | ||||
Benjamin Peterson | f54ab1f | 2013-10-12 19:54:05 | [diff] [blame] | 13 | **.aifc = BIN |
14 | **.aiff = BIN | ||||
Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 15 | **.au = BIN |
16 | **.bmp = BIN | ||||
17 | **.db = BIN | ||||
18 | **.exe = BIN | ||||
19 | **.icns = BIN | ||||
20 | **.gif = BIN | ||||
21 | **.ico = BIN | ||||
22 | **.info = BIN | ||||
23 | **.jpg = BIN | ||||
24 | **.pck = BIN | ||||
25 | **.png = BIN | ||||
26 | **.psd = BIN | ||||
27 | **.tar = BIN | ||||
Benjamin Peterson | f54ab1f | 2013-10-12 19:54:05 | [diff] [blame] | 28 | **.wav = BIN |
Nick Coghlan | d0cf063 | 2013-11-11 12:11:55 | [diff] [blame] | 29 | **.whl = BIN |
Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 30 | **.xar = BIN |
31 | **.zip = BIN | ||||
32 | |||||
Victor Stinner | 033a543 | 2011-05-16 14:43:38 | [diff] [blame] | 33 | Lib/test/cjkencodings/* = BIN |
Antoine Pitrou | 59db1f3 | 2011-02-25 14:32:24 | [diff] [blame] | 34 | Lib/test/decimaltestdata/*.decTest = BIN |
Victor Stinner | 651e1a2 | 2011-05-16 14:50:23 | [diff] [blame] | 35 | Lib/test/sndhdrdata/sndhdr.* = BIN |
36 | Lib/test/test_email/data/msg_26.txt = BIN | ||||
Tim Peters | 9d2e3a1 | 2013-09-01 20:56:22 | [diff] [blame] | 37 | Lib/test/xmltestdata/* = BIN |
Antoine Pitrou | 59db1f3 | 2011-02-25 14:32:24 | [diff] [blame] | 38 | |
Vinay Sajip | f2bdc36 | 2012-05-26 02:25:23 | [diff] [blame] | 39 | Lib/venv/scripts/nt/* = BIN |
40 | |||||
Martin v. Löwis | 815b41b | 2014-02-28 14:27:29 | [diff] [blame] | 41 | Lib/test/coding20731.py = BIN |
42 | |||||
doko@ubuntu.com | d46f729 | 2017-01-31 12:34:58 | [diff] [blame] | 43 | # Windows only zlib upstream file |
44 | Modules/zlib/zlib.map = CRLF | ||||
45 | |||||
Zachary Ware | 4c9c848 | 2015-04-13 16:59:54 | [diff] [blame] | 46 | # Windows batch files work best with CRLF, there can be subtle problems with LF |
47 | **.bat = CRLF | ||||
48 | |||||
Zachary Ware | 30cc6fa | 2015-04-13 17:28:11 | [diff] [blame] | 49 | # The Windows readme is likely to be read in Notepad, so make it readable |
50 | PCbuild/readme.txt = CRLF | ||||
51 | |||||
Antoine Pitrou | 59db1f3 | 2011-02-25 14:32:24 | [diff] [blame] | 52 | # All other files (which presumably are human-editable) are "native". |
53 | # This must be the last rule! | ||||
54 | |||||
55 | ** = native | ||||
Georg Brandl | 2efeb40 | 2010-10-21 15:44:51 | [diff] [blame] | 56 | |
57 | [repository] | ||||
Antoine Pitrou | 59db1f3 | 2011-02-25 14:32:24 | [diff] [blame] | 58 | native = LF |