File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ Changelog
22=========
33
44
5+ 1.5.x (unreleased)
6+ ------------------
7+
8+
9+
5101.5.2 (2014-04-04)
611------------------
712
Original file line number Diff line number Diff line change 4646"""
4747from __future__ import with_statement
4848
49- __version__ = '1.5.2 '
49+ __version__ = '1.5.3a0 '
5050
5151import os
5252import sys
Original file line number Diff line number Diff line change 11[wheel]
22universal = 1
3+
4+ [pep8]
5+ select =
6+ ignore = E226,E24
7+ max_line_length = 79
Original file line number Diff line number Diff line change @@ -82,11 +82,10 @@ def test_check_simple(self):
8282 self .assertEqual (x , str (num ))
8383 self .assertEqual (y , str (col ))
8484 self .assertTrue (msg .startswith (' E11' ))
85- # Config file read from the pep8's setup.cfg or tox.ini
86- config_filenames = self ._config_filenames
87- self .assertEqual (len (config_filenames ), 2 )
88- self .assertTrue (config_filenames [0 ].endswith ('setup.cfg' ))
89- self .assertTrue (config_filenames [1 ].endswith ('tox.ini' ))
85+ # Config file read from the pep8's setup.cfg
86+ config_filenames = [os .path .basename (p )
87+ for p in self ._config_filenames ]
88+ self .assertTrue ('setup.cfg' in config_filenames )
9089
9190 def test_check_stdin (self ):
9291 pep8 .PROJECT_CONFIG = ()
Original file line number Diff line number Diff line change @@ -13,8 +13,3 @@ commands =
1313 {envpython} pep8.py --statistics pep8.py
1414 {envpython} pep8.py --doctest
1515 {envpython} -m testsuite.test_all
16-
17- [pep8]
18- select =
19- ignore = E226,E24
20- max_line_length = 79
You can’t perform that action at this time.
0 commit comments