summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpycodestyle.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index d324544..e0c9e42 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -1062,12 +1062,14 @@ def whitespace_before_comment(logical_line, tokens):
Inline comments should be separated by at least two spaces from the
statement. They should start with a # and a single space.
- Each line of a block comment starts with a # and a single space
- (unless it is indented text inside the comment).
+ Each line of a block comment starts with a # and one or multiple
+ spaces as there can be indented text inside the comment.
Okay: x = x + 1 # Increment x
Okay: x = x + 1 # Increment x
- Okay: # Block comment
+ Okay: # Block comments:
+ Okay: # - Block comment list
+ Okay: #  - Block comment list
E261: x = x + 1 # Increment x
E262: x = x + 1 #Increment x
E262: x = x + 1 # Increment x