Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: flake8-abp/README.md

Issue 29342824: Issue 4044 - Added handling for __future__ unicode_literals import to check_quotes() (Closed)
Patch Set: removed redundant comment Created June 2, 2016, 5:45 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | flake8-abp/flake8_abp.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: flake8-abp/README.md
===================================================================
--- a/flake8-abp/README.md
+++ b/flake8-abp/README.md
@@ -28,16 +28,18 @@
literal/comprehension of that type can be used directly
* `A106`: Use augment assignment
* `A107`: `%` operator used for string formatting; this mechanism
has been superseded by the string's `format()` method
* `A108`: `+` operator to concatenate more than two strings
* `A109`: Use triple double quotes for docstrings as recommended in PEP-257
* `A110`: Write single-line string literals as represented by `repr()`
* `A111`: Redundant parantheses around if or while condition
+* `A112`: Use `from __future__ import unicode_literals` instead of
+ prefixing literals with "u"
### Redundancy and complexity
* `A201`: Redundant or superfluos `global` or `nonlocal` declaration
* `A202`: Dead code after block is left
* `A303`: Unused expression
* `A204`: Redundant or superfluos pass statement
« no previous file with comments | « no previous file | flake8-abp/flake8_abp.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld