Merge. Allow long lines in docstrings and comments.
[third_party/pep8] / testsuite / E25.py
1 #: E251 E251
2 def foo(bar = False):
3     '''Test function with an error in declaration'''
4     pass
5 #: E251
6 foo(bar= True)
7 #: E251
8 foo(bar =True)
9 #: E251 E251
10 foo(bar = True)
11 #: E251
12 y = bar(root= "sdasd")
13 #: Okay
14 foo(bar=(1 == 1))
15 foo(bar=(1 != 1))
16 foo(bar=(1 >= 1))
17 foo(bar=(1 <= 1))
18 (options, args) = parser.parse_args()
19 d[type(None)] = _deepcopy_atomic