blob: 9445ef1e2c525215342b488ca28a3042c72ded8c [file] [log] [blame]
Michael Feltc5ae1692017-12-19 13:58:49 +01001# added for local development
2.buildaix/
3Modules/python.exp
4buildaix/
5installp/
6.gitignore
7
Christian Heimes3d2198c2015-04-22 23:54:44 +02008# Two-trick pony for OSX and other case insensitive file systems:
9# Ignore ./python binary on Unix but still look into ./Python/ directory.
10/python
Steve Dower63cf72d2016-09-05 10:12:03 -070011!/Python/
Victor Stinner7bbc8552010-12-17 22:24:30 +000012*.cover
gfyoungc0fa4ba2017-05-24 11:57:37 -040013*.iml
Victor Stinner7bbc8552010-12-17 22:24:30 +000014*.o
15*.orig
16*.pyc
17*.pyd
18*.pyo
19*.rej
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030020*.swp
Victor Stinner7bbc8552010-12-17 22:24:30 +000021*~
Brett Cannon7188a3e2015-09-18 15:13:44 -070022*.gc??
23*.profclang?
24*.profraw
Zachary Ware5af85642015-12-21 12:09:17 -060025*.dyn
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030026.gdb_history
Victor Stinnerd960fae2010-10-25 17:37:18 +000027Doc/build/
Brett Cannond5ea39d2014-12-05 15:17:31 -050028Doc/venv/
Ned Deily590665c2017-09-07 17:17:53 -070029Doc/.venv/
30Doc/env/
31Doc/.env/
Łukasz Langa50da40f2017-03-10 05:29:43 -080032Include/pydtrace_probes.h
Steve Dower65e4cb12014-11-22 12:54:57 -080033Lib/distutils/command/*.pdb
Victor Stinner7bbc8552010-12-17 22:24:30 +000034Lib/lib2to3/*.pickle
Andrew Kuchling5e03e492013-06-21 07:44:50 -040035Lib/test/data/*
Victor Stinnerd960fae2010-10-25 17:37:18 +000036Makefile
37Makefile.pre
38Misc/python.pc
Victor Stinner0a8e5722019-05-23 03:30:23 +020039Misc/python-embed.pc
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010040Misc/python-config.sh
Victor Stinnerd960fae2010-10-25 17:37:18 +000041Modules/Setup
42Modules/Setup.config
43Modules/Setup.local
44Modules/config.c
Victor Stinner7bbc8552010-12-17 22:24:30 +000045Modules/ld_so_aix
Nick Coghlan973fe0b2014-07-25 21:52:14 +100046Programs/_freeze_importlib
Zachary Ware43a89812016-10-01 17:00:51 -050047Programs/_freeze_importlib.exe
Nick Coghlan973fe0b2014-07-25 21:52:14 +100048Programs/_testembed
Zachary Ware43a89812016-10-01 17:00:51 -050049Programs/_testembed.exe
Zachary Ware30270c82014-10-10 23:42:59 -050050PC/python_nt*.h
51PC/pythonnt_rc*.h
Steve Dower65e4cb12014-11-22 12:54:57 -080052PC/*/*.exe
53PC/*/*.exp
54PC/*/*.lib
55PC/*/*.bsc
56PC/*/*.dll
57PC/*/*.pdb
58PC/*/*.user
59PC/*/*.ncb
60PC/*/*.suo
61PC/*/Win32-temp-*
62PC/*/x64-temp-*
63PC/*/amd64
Zachary Ware30270c82014-10-10 23:42:59 -050064PCbuild/*.user
65PCbuild/*.suo
66PCbuild/*.*sdf
Zachary Ware30270c82014-10-10 23:42:59 -050067PCbuild/*-pgi
68PCbuild/*-pgo
Segev Finer8e675282017-04-21 02:32:26 +030069PCbuild/*.VC.db
70PCbuild/*.VC.opendb
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050071PCbuild/.vs/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030072PCbuild/amd64/
Paul Monson8a1657b2019-02-14 08:31:30 -080073PCbuild/arm32/
Paul Monsonf96e7fd2019-05-17 10:07:24 -070074PCbuild/arm64/
Zachary Ware2eb1a8b2015-05-16 22:45:27 -050075PCbuild/obj/
Segev Finerbe5ebe52017-07-06 23:43:37 +030076PCbuild/win32/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030077.purify
Victor Stinner7bbc8552010-12-17 22:24:30 +000078__pycache__
79autom4te.cache
Victor Stinnerd960fae2010-10-25 17:37:18 +000080build/
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030081buildno
82config.cache
83config.log
84config.status
85config.status.lineno
86core
87db_home
Steve Dower63cf72d2016-09-05 10:12:03 -070088.hg/
Steve Dower323d5382017-05-24 09:24:49 -070089.idea/
Steve Dower63cf72d2016-09-05 10:12:03 -070090ipch/
Victor Stinner7bbc8552010-12-17 22:24:30 +000091libpython*.a
Éric Araujo5c8545b2011-07-28 22:38:44 +020092libpython*.so*
Zachary Ware3cdaaaf2016-09-06 16:46:22 -070093libpython*.dylib
Zachary Ware43a89812016-10-01 17:00:51 -050094libpython*.dll
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +030095platform
Victor Stinnerd960fae2010-10-25 17:37:18 +000096pybuilddir.txt
97pyconfig.h
Petri Lehtinen4eb9f502013-02-23 15:35:42 +010098python-config
99python-config.py
Zachary Ware30270c82014-10-10 23:42:59 -0500100python.bat
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +0300101python.exe
Victor Stinnerd960fae2010-10-25 17:37:18 +0000102python-gdb.py
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +0300103python.exe-gdb.py
104reflog.txt
105.svn/
Victor Stinnerd960fae2010-10-25 17:37:18 +0000106tags
Petri Lehtinen0f00dfa2012-05-22 20:48:16 +0300107TAGS
Ezio Melottif00bfa22011-06-25 12:36:38 +0300108.coverage
109coverage/
Zachary Ware4b2b1de2014-11-01 22:39:21 -0500110externals/
Ezio Melottif00bfa22011-06-25 12:36:38 +0300111htmlcov/
Steve Dowerbb240872015-02-05 22:08:48 -0800112Tools/msi/obj
Steve Dower65e4cb12014-11-22 12:54:57 -0800113Tools/ssl/amd64
114Tools/ssl/win32
Steve Dower63cf72d2016-09-05 10:12:03 -0700115.vs/
116.vscode/
Neeraj Badlani95ad3822018-03-26 03:11:47 -0700117gmon.out
Ekin Dursun5a49ca62018-04-30 22:10:45 +0300118.mypy_cache/