mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-14 08:27:15 +08:00
Try to add syntax errors to pep8 normalizing.
This commit is contained in:
@@ -35,18 +35,18 @@ result = [
|
||||
|
||||
#: E203:9
|
||||
if x == 4 :
|
||||
print x, y
|
||||
print(x, y)
|
||||
x, y = y, x
|
||||
if x == 4:
|
||||
#: E203:12 E702:13
|
||||
a = x, y ; x, y = y, x
|
||||
if x == 4:
|
||||
print x, y
|
||||
print(x, y)
|
||||
#: E203:12
|
||||
x, y = y , x
|
||||
# Okay
|
||||
if x == 4:
|
||||
print x, y
|
||||
print(x, y)
|
||||
x, y = y, x
|
||||
a[b1, :] == a[b1, ...]
|
||||
a[b1, :1] == 3
|
||||
|
||||
Reference in New Issue
Block a user