Update docs for configuration
[third_party/pep8] / testsuite / W29.py
1 #: Okay
2 # 情
3 #: W291:1:6
4 print 
5 #: W293:2:1
6 class Foo(object):
7     
8     bang = 12
9 #: W291:2:35
10 '''multiline
11 string with trailing whitespace'''   
12 #: W292:1:36 noeol
13 # This line doesn't have a linefeed
14 #: W292:1:5 E225:1:2 noeol
15 1+ 1
16 #: W292:1:27 E261:1:12 noeol
17 import this # no line feed
18 #: W292:3:22 noeol
19 class Test(object):
20     def __repr__(self):
21         return 'test'