1[patterns]
2
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
11
12**.aif  = BIN
13**.aifc = BIN
14**.aiff = BIN
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
28**.wav  = BIN
29**.whl  = BIN
30**.xar  = BIN
31**.zip  = BIN
32
33Lib/test/cjkencodings/* = BIN
34Lib/test/decimaltestdata/*.decTest = BIN
35Lib/test/sndhdrdata/sndhdr.* = BIN
36Lib/test/test_email/data/msg_26.txt = BIN
37Lib/test/xmltestdata/* = BIN
38
39Lib/venv/scripts/nt/* = BIN
40
41Lib/test/coding20731.py = BIN
42
43# Windows only zlib upstream file
44Modules/zlib/zlib.map = CRLF
45
46# Windows batch files work best with CRLF, there can be subtle problems with LF
47**.bat = CRLF
48
49# The Windows readme is likely to be read in Notepad, so make it readable
50PCbuild/readme.txt = CRLF
51
52# All other files (which presumably are human-editable) are "native".
53# This must be the last rule!
54
55** = native
56
57[repository]
58native = LF
59