summaryrefslogtreecommitdiff
path: root/testsuite/E22.py
Commit message (Collapse)AuthorAgeFilesLines
* Adds matmul operator support, fixes #768sobolevn2019-12-051-0/+5
|
* Check for 'is' and 'in' as wellAdam Johnson2019-02-281-0/+4
|
* E225 Check for space around boolean operatorsAdam Johnson2019-02-271-0/+4
| | | | This was documented in the docstring for `missing_whitespace_around_operator` but not implemented, allowing e.g. `1and 0` to pass. Fixed by adding test case then modifying the check to search for the 'and' and 'or' operators as well.
* Fix issue #400: Require two blank lines after toplevel def, classNikhil Benesch2016-06-251-0/+1
|
* Do not enforce whitespaces around ** operator; issue #292feature292Florent Xicluna2014-12-161-6/+6
|
* Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-05-291-2/+2
|\ | | | | | | E701; issue #277
| * Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-04-261-2/+2
| | | | | | | | E701; issue #277
* | few mispelling errorsCarlos E. Garcia2014-04-231-1/+1
|/
* Fix regression with E22 checks and inline comments; issue #271Florent Xicluna2014-04-091-0/+5
|
* Add tests relevant for issue #220Florent Xicluna2014-04-031-0/+4
|
* Improve the test framework to count the errors, motivated by issue #237Florent Xicluna2014-03-241-9/+9
|
* Report E227 or E228 instead of E225 for whitespace around bitwise, shift or ↵Florent Xicluna2013-02-241-1/+29
| | | | modulo operators; issue #166
* Regroup optional E225 checks with new error code E226 which is ignored in ↵Florent Xicluna2012-12-201-10/+35
| | | | the default configuration. issue #96
* Add changelog entry for issue #96Florent Xicluna2012-12-191-0/+4
|
* Add optional surrounding whitespace to high precedence mathematical ↵Tim Leslie2012-08-201-7/+4
| | | | operators (*, **, /, //). Addresses issue #96
* Fix E225 for Python 3. Closes #72.Florent Xicluna2012-06-041-0/+3
|
* More testsFlorent Xicluna2012-05-281-0/+4
|
* Reorganize the test suite in order to check more failures with fewer test files.Florent Xicluna2010-09-111-0/+87
--HG-- rename : testsuite/E101.py => testsuite/E10.py rename : testsuite/E111.py => testsuite/E11.py rename : testsuite/E202not.py => testsuite/E20.py rename : testsuite/E211not.py => testsuite/E21.py rename : testsuite/E225not.py => testsuite/E22.py rename : testsuite/E231.py => testsuite/E23.py rename : testsuite/E241.py => testsuite/E24.py rename : testsuite/E251.py => testsuite/E25.py rename : testsuite/E261.py => testsuite/E26.py rename : testsuite/E301.py => testsuite/E30.py rename : testsuite/E301not.py => testsuite/E30not.py rename : testsuite/E401.py => testsuite/E40.py rename : testsuite/E501.py => testsuite/E50.py rename : testsuite/E701.py => testsuite/E70.py rename : testsuite/W191.py => testsuite/W19.py rename : testsuite/W292.py => testsuite/W29.py rename : testsuite/W391.py => testsuite/W39.py rename : testsuite/W601.py => testsuite/W60.py rename : testsuite/E113not.py => testsuite/latin-1.py rename : testsuite/E501not.py => testsuite/utf-8.py