File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545('''
4646 ''' + ' \
4747 ' )
48+ #
49+ #: E501
50+ '''multiline string
51+ with a long long long long long long long long long long long long long long long long line
52+ '''
53+ #: E501
54+ '''same thing, but this time without a terminal newline in the string
55+ long long long long long long long long long long long long long long long long line'''
Original file line number Diff line number Diff line change @@ -97,6 +97,14 @@ def long_function_name(
9797if os .path .exists (os .path .join (path , PEP8_BIN )):
9898 cmd = ([os .path .join (path , PEP8_BIN )] +
9999 self ._pep8_options (targetfile ))
100+ #: W191
101+ '''
102+ multiline string with tab in it'''
103+ #: E101 W191
104+ '''multiline string
105+ with tabs
106+ and spaces
107+ '''
100108#: E101 W191
101109if foo is None and bar is "frop" and \
102110 blah == 'yeah' :
Original file line number Diff line number Diff line change 66class Foo (object ):
77
88 bang = 12
9+ #: W291
10+ '''multiline
11+ string with trailing whitespace'''
912#: W292
1013# This line doesn't have a linefeed
You can’t perform that action at this time.
0 commit comments