blob: 54c598e109e06b1a93e269ccbce9ee114865f7c2 [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/
Greg Price8c9e9b02019-08-27 11:16:31 -07005
Victor Stinner7bbc8552010-12-17 22:24:30 +00006*.cover
gfyoungc0fa4ba2017-05-24 11:57:37 -04007*.iml
Victor Stinner7bbc8552010-12-17 22:24:30 +00008*.o
9*.orig
10*.pyc
11*.pyd
12*.pyo
13*.rej
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030014*.swp
Victor Stinner7bbc8552010-12-17 22:24:30 +000015*~
Brett Cannon7188a3e2015-09-18 15:13:44 -070016*.gc??
17*.profclang?
18*.profraw
Zachary Ware5af85642015-12-21 12:09:17 -060019*.dyn
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030020.gdb_history
Victor Stinnerd960fae2010-10-25 17:37:18 +000021Doc/build/
Brett Cannond5ea39d2014-12-05 15:17:31 -050022Doc/venv/
Ned Deily590665c2017-09-07 17:17:53 -070023Doc/.venv/
24Doc/env/
25Doc/.env/
Łukasz Langa50da40f2017-03-10 05:29:43 -080026Include/pydtrace_probes.h
Steve Dower65e4cb12014-11-22 12:54:57 -080027Lib/distutils/command/*.pdb
Victor Stinner7bbc8552010-12-17 22:24:30 +000028Lib/lib2to3/*.pickle
Andrew Kuchling5e03e492013-06-21 07:44:50 -040029Lib/test/data/*
Greg Price5e5e9512019-09-09 02:34:50 -070030!Lib/test/data/README
31/Makefile
Victor Stinnerd960fae2010-10-25 17:37:18 +000032Makefile.pre
33Misc/python.pc
Victor Stinner0a8e5722019-05-23 03:30:23 +020034Misc/python-embed.pc
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010035Misc/python-config.sh
Victor Stinnerd960fae2010-10-25 17:37:18 +000036Modules/Setup.config
37Modules/Setup.local
38Modules/config.c
Victor Stinner7bbc8552010-12-17 22:24:30 +000039Modules/ld_so_aix
Nick Coghlan973fe0b2014-07-25 21:52:14 +100040Programs/_freeze_importlib
Zachary Ware43a89812016-10-01 17:00:51 -050041Programs/_freeze_importlib.exe
Nick Coghlan973fe0b2014-07-25 21:52:14 +100042Programs/_testembed
Zachary Ware43a89812016-10-01 17:00:51 -050043Programs/_testembed.exe
Zachary Ware30270c82014-10-10 23:42:59 -050044PC/python_nt*.h
45PC/pythonnt_rc*.h
Steve Dower65e4cb12014-11-22 12:54:57 -080046PC/*/*.exe
47PC/*/*.exp
48PC/*/*.lib
49PC/*/*.bsc
50PC/*/*.dll
51PC/*/*.pdb
52PC/*/*.user
53PC/*/*.ncb
54PC/*/*.suo
55PC/*/Win32-temp-*
56PC/*/x64-temp-*
57PC/*/amd64
Zachary Ware30270c82014-10-10 23:42:59 -050058PCbuild/*.user
59PCbuild/*.suo
60PCbuild/*.*sdf
Zachary Ware30270c82014-10-10 23:42:59 -050061PCbuild/*-pgi
62PCbuild/*-pgo
Segev Finer8e675282017-04-21 02:32:26 +030063PCbuild/*.VC.db
64PCbuild/*.VC.opendb
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050065PCbuild/.vs/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030066PCbuild/amd64/
Paul Monson8a1657b2019-02-14 08:31:30 -080067PCbuild/arm32/
Paul Monsonf96e7fd2019-05-17 10:07:24 -070068PCbuild/arm64/
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050069PCbuild/obj/
Segev Finerbe5ebe52017-07-06 23:43:37 +030070PCbuild/win32/
Greg Price3e4498d2019-08-14 18:18:53 -070071Tools/unicode/data/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030072.purify
Victor Stinner7bbc8552010-12-17 22:24:30 +000073__pycache__
74autom4te.cache
Victor Stinnerd960fae2010-10-25 17:37:18 +000075build/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030076buildno
77config.cache
78config.log
79config.status
80config.status.lineno
81core
Greg Price5e5e9512019-09-09 02:34:50 -070082!Tools/msi/core/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030083db_home
Steve Dower63cf72d2016-09-05 10:12:03 -070084.hg/
Steve Dower323d5382017-05-24 09:24:49 -070085.idea/
Steve Dower63cf72d2016-09-05 10:12:03 -070086ipch/
Victor Stinner7bbc8552010-12-17 22:24:30 +000087libpython*.a
Éric Araujo5c8545b2011-07-28 22:38:44 +020088libpython*.so*
Zachary Ware3cdaaaf2016-09-06 16:46:22 -070089libpython*.dylib
Zachary Ware43a89812016-10-01 17:00:51 -050090libpython*.dll
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030091platform
Victor Stinnerd960fae2010-10-25 17:37:18 +000092pybuilddir.txt
Greg Price5e5e9512019-09-09 02:34:50 -070093/pyconfig.h
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010094python-config
95python-config.py
Zachary Ware30270c82014-10-10 23:42:59 -050096python.bat
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030097python.exe
Victor Stinnerd960fae2010-10-25 17:37:18 +000098python-gdb.py
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030099python.exe-gdb.py
100reflog.txt
101.svn/
Victor Stinnerd960fae2010-10-25 17:37:18 +0000102tags
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +0300103TAGS
Ezio Melottif00bfa22011-06-25 12:36:38 +0300104.coverage
105coverage/
Zachary Ware4b2b1de2014-11-01 22:39:21 -0500106externals/
Ezio Melottif00bfa22011-06-25 12:36:38 +0300107htmlcov/
Steve Dowerbb240872015-02-05 22:08:48 -0800108Tools/msi/obj
Steve Dower65e4cb12014-11-22 12:54:57 -0800109Tools/ssl/amd64
110Tools/ssl/win32
Steve Dower63cf72d2016-09-05 10:12:03 -0700111.vs/
112.vscode/
Neeraj Badlani95ad3822018-03-26 03:11:47 -0700113gmon.out
Ekin Dursun5a49ca62018-04-30 22:10:45 +0300114.mypy_cache/