Skip to content

Commit 69bc3c0

Browse files
committed
Add __pycache__ to the ignore list
1 parent 49dce07 commit 69bc3c0

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Changelog
88
* Do not require ``setuptools`` to work around an issue with ``pip`` and
99
Python 3. (Issue #172)
1010

11+
* Add ``__pycache__`` to the ignore list.
12+
1113

1214
1.4.4 (2013-02-24)
1315
------------------

pep8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
except ImportError:
6363
from ConfigParser import RawConfigParser
6464

65-
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git'
65+
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__'
6666
DEFAULT_IGNORE = 'E226,E24'
6767
if sys.platform == 'win32':
6868
DEFAULT_CONFIG = os.path.expanduser(r'~\.pep8')

0 commit comments

Comments
 (0)