blob: 9606f0f49ea82cb2e25d551aeccee28adabf1cb7 [file] [log] [blame]
Christian Heimes3d2198c2015-04-22 23:54:44 +02001# 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
Steve Dower63cf72d2016-09-05 10:12:03 -07004!/Python/
Victor Stinner7bbc8552010-12-17 22:24:30 +00005*.cover
6*.o
7*.orig
8*.pyc
9*.pyd
10*.pyo
11*.rej
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030012*.swp
Victor Stinner7bbc8552010-12-17 22:24:30 +000013*~
Brett Cannon7188a3e2015-09-18 15:13:44 -070014*.gc??
15*.profclang?
16*.profraw
Zachary Ware5af85642015-12-21 12:09:17 -060017*.dyn
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030018.gdb_history
Victor Stinnerd960fae2010-10-25 17:37:18 +000019Doc/build/
Brett Cannond5ea39d2014-12-05 15:17:31 -050020Doc/venv/
Steve Dower65e4cb12014-11-22 12:54:57 -080021Lib/distutils/command/*.pdb
Victor Stinner7bbc8552010-12-17 22:24:30 +000022Lib/lib2to3/*.pickle
Andrew Kuchling5e03e492013-06-21 07:44:50 -040023Lib/test/data/*
Victor Stinnerd960fae2010-10-25 17:37:18 +000024Makefile
25Makefile.pre
26Misc/python.pc
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010027Misc/python-config.sh
Victor Stinnerd960fae2010-10-25 17:37:18 +000028Modules/Setup
29Modules/Setup.config
30Modules/Setup.local
31Modules/config.c
Victor Stinner7bbc8552010-12-17 22:24:30 +000032Modules/ld_so_aix
Nick Coghlan973fe0b2014-07-25 21:52:14 +100033Programs/_freeze_importlib
Zachary Ware43a89812016-10-01 17:00:51 -050034Programs/_freeze_importlib.exe
Nick Coghlan973fe0b2014-07-25 21:52:14 +100035Programs/_testembed
Zachary Ware43a89812016-10-01 17:00:51 -050036Programs/_testembed.exe
Zachary Ware30270c82014-10-10 23:42:59 -050037PC/python_nt*.h
38PC/pythonnt_rc*.h
Steve Dower65e4cb12014-11-22 12:54:57 -080039PC/*/*.exe
40PC/*/*.exp
41PC/*/*.lib
42PC/*/*.bsc
43PC/*/*.dll
44PC/*/*.pdb
45PC/*/*.user
46PC/*/*.ncb
47PC/*/*.suo
48PC/*/Win32-temp-*
49PC/*/x64-temp-*
50PC/*/amd64
Zachary Ware30270c82014-10-10 23:42:59 -050051PCbuild/*.user
52PCbuild/*.suo
53PCbuild/*.*sdf
Zachary Ware30270c82014-10-10 23:42:59 -050054PCbuild/*-pgi
55PCbuild/*-pgo
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050056PCbuild/.vs/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030057PCbuild/amd64/
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050058PCbuild/obj/
59PCBuild/win32/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030060.purify
Victor Stinnerd960fae2010-10-25 17:37:18 +000061Parser/pgen
Zachary Warec55f5732016-10-01 17:18:03 -050062Parser/pgen.exe
Victor Stinner7bbc8552010-12-17 22:24:30 +000063__pycache__
64autom4te.cache
Victor Stinnerd960fae2010-10-25 17:37:18 +000065build/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030066buildno
67config.cache
68config.log
69config.status
70config.status.lineno
71core
72db_home
Steve Dower63cf72d2016-09-05 10:12:03 -070073.hg/
74ipch/
Victor Stinner7bbc8552010-12-17 22:24:30 +000075libpython*.a
Éric Araujo5c8545b2011-07-28 22:38:44 +020076libpython*.so*
Zachary Ware3cdaaaf2016-09-06 16:46:22 -070077libpython*.dylib
Zachary Ware43a89812016-10-01 17:00:51 -050078libpython*.dll
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030079platform
Victor Stinnerd960fae2010-10-25 17:37:18 +000080pybuilddir.txt
81pyconfig.h
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010082python-config
83python-config.py
Zachary Ware30270c82014-10-10 23:42:59 -050084python.bat
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030085python.exe
Victor Stinnerd960fae2010-10-25 17:37:18 +000086python-gdb.py
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030087python.exe-gdb.py
88reflog.txt
89.svn/
Victor Stinnerd960fae2010-10-25 17:37:18 +000090tags
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030091TAGS
Ezio Melottif00bfa22011-06-25 12:36:38 +030092.coverage
93coverage/
Zachary Ware4b2b1de2014-11-01 22:39:21 -050094externals/
Ezio Melottif00bfa22011-06-25 12:36:38 +030095htmlcov/
Steve Dowerbb240872015-02-05 22:08:48 -080096Tools/msi/obj
Steve Dower65e4cb12014-11-22 12:54:57 -080097Tools/ssl/amd64
98Tools/ssl/win32
Steve Dower63cf72d2016-09-05 10:12:03 -070099.vs/
100.vscode/