Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 1 | # Two-trick pony for OSX and other case insensitive file systems: |
2 | # Ignore ./python binary on Unix but still look into ./Python/ directory. | ||||
3 | /python | ||||
4 | !/Python/ | ||||
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 5 | *.cover |
6 | *.o | ||||
7 | *.orig | ||||
8 | *.pyc | ||||
9 | *.pyd | ||||
10 | *.pyo | ||||
11 | *.rej | ||||
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 12 | *.swp |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 13 | *~ |
Brett Cannon | 4ff151a | 2015-09-18 15:09:42 -0700 | [diff] [blame] | 14 | *.gc?? |
15 | *.profclang? | ||||
16 | *.profraw | ||||
Zachary Ware | 6ed42ea | 2015-12-21 11:43:03 -0600 | [diff] [blame] | 17 | *.dyn |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 18 | Doc/build/ |
19 | Doc/tools/docutils/ | ||||
20 | Doc/tools/jinja2/ | ||||
21 | Doc/tools/pygments/ | ||||
22 | Doc/tools/sphinx/ | ||||
23 | Lib/lib2to3/*.pickle | ||||
Victor Stinner | 2b183b8 | 2017-05-03 17:27:17 +0200 | [diff] [blame] | 24 | Lib/test/data/* |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 25 | Makefile |
26 | Makefile.pre | ||||
27 | Misc/python.pc | ||||
28 | Modules/Setup | ||||
29 | Modules/Setup.config | ||||
30 | Modules/Setup.local | ||||
31 | Modules/config.c | ||||
32 | Modules/ld_so_aix | ||||
Victor Stinner | 8832141 | 2017-05-10 02:38:28 +0200 | [diff] [blame] | 33 | PC/python_nt*.h |
34 | PC/pythonnt_rc*.h | ||||
35 | PC/*/*.exe | ||||
36 | PC/*/*.exp | ||||
37 | PC/*/*.lib | ||||
38 | PC/*/*.bsc | ||||
39 | PC/*/*.dll | ||||
40 | PC/*/*.pdb | ||||
41 | PC/*/*.user | ||||
42 | PC/*/*.ncb | ||||
43 | PC/*/*.suo | ||||
44 | PC/*/Win32-temp-* | ||||
45 | PC/*/x64-temp-* | ||||
46 | PC/*/amd64 | ||||
Zachary Ware | 986b7ff | 2017-09-04 16:05:33 -0700 | [diff] [blame] | 47 | PCbuild/*.ilk |
Victor Stinner | 5e006aa | 2017-08-19 00:50:15 +0200 | [diff] [blame] | 48 | PCbuild/*.user |
49 | PCbuild/*.suo | ||||
50 | PCbuild/*.*sdf | ||||
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 51 | PCbuild/*.bsc |
52 | PCbuild/*.dll | ||||
53 | PCbuild/*.exe | ||||
54 | PCbuild/*.exp | ||||
55 | PCbuild/*.lib | ||||
56 | PCbuild/*.ncb | ||||
57 | PCbuild/*.o | ||||
58 | PCbuild/*.pdb | ||||
59 | PCbuild/Win32-temp-* | ||||
Mariatta | 91e5ee5 | 2017-04-20 20:56:11 -0700 | [diff] [blame] | 60 | PCbuild/*.VC.db |
61 | PCbuild/*.VC.opendb | ||||
Victor Stinner | 5e006aa | 2017-08-19 00:50:15 +0200 | [diff] [blame] | 62 | PCbuild/amd64/ |
63 | PCbuild/obj/ | ||||
64 | PCbuild/win32/ | ||||
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 65 | Parser/pgen |
66 | Parser/pgen.stamp | ||||
67 | autom4te.cache | ||||
68 | build/ | ||||
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 69 | config.cache |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 70 | config.log |
71 | config.status | ||||
72 | libpython*.a | ||||
73 | libpython*.so* | ||||
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 74 | libpython*.dylib |
75 | libpython*.dll | ||||
Victor Stinner | 2b183b8 | 2017-05-03 17:27:17 +0200 | [diff] [blame] | 76 | platform |
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 77 | pybuilddir.txt |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 78 | pyconfig.h |
R David Murray | 6ab6bd8 | 2015-04-12 19:14:30 -0400 | [diff] [blame] | 79 | python$ |
Victor Stinner | 5e006aa | 2017-08-19 00:50:15 +0200 | [diff] [blame] | 80 | python.bat |
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 81 | python.exe |
Zachary Ware | 51658f7 | 2017-06-11 17:45:40 -0500 | [diff] [blame] | 82 | python*-gdb.py |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 83 | tags |
Victor Stinner | 219a3f9 | 2017-04-28 02:56:40 +0200 | [diff] [blame] | 84 | TAGS |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 85 | .coverage |
86 | coverage/ | ||||
Zachary Ware | 21a2350 | 2014-11-01 22:34:09 -0500 | [diff] [blame] | 87 | externals/ |
Petri Lehtinen | 2e2cc6f | 2011-11-04 21:25:46 +0200 | [diff] [blame] | 88 | htmlcov/ |
Serhiy Storchaka | 4a3c4ba | 2018-04-01 02:44:01 +0300 | [diff] [blame] | 89 | gmon.out |