summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMike Miller <mike@mtmxr.com>2016-06-02 12:44:23 -0700
committerMike Miller <mike@mtmxr.com>2016-06-02 14:34:16 -0700
commit26893dafe4562caefeb200c990972bc6262842d9 (patch)
treeb8640109c4755ba4dbd84859248489e23de38f3c /CHANGES.txt
parenta99bcecd4bb690271b5f0c92b22d3b2c8c872ec7 (diff)
downloadpep8-26893dafe4562caefeb200c990972bc6262842d9.tar.gz
Report E741 for prohibited single-letter variables
Check for prohibited identifiers occuring to the lhs of an assignment operator or after the 'as' keyword. Closes #341
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index e129dc8..f2ac1de 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -16,6 +16,7 @@ Changes:
* Added check E275 for whitespace on `from ... import ...` lines; #489 / #491
* Added W503 to the list of codes ignored by default ignore list; #498
* Removed use of project level `.pep8` configuration file; #364
+* Added check E741 for using variables named 'l', 'O', or 'I'; #341
Bugs: