mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
Remove trailing semicolons
This commit is contained in:
@@ -6,7 +6,7 @@ Checking for ``list.append`` and all the other possible array modifications.
|
|||||||
# -----------------
|
# -----------------
|
||||||
arr = []
|
arr = []
|
||||||
for a in [1,2]:
|
for a in [1,2]:
|
||||||
arr.append(a);
|
arr.append(a)
|
||||||
|
|
||||||
arr.append # should not cause an exception
|
arr.append # should not cause an exception
|
||||||
arr.append() # should not cause an exception
|
arr.append() # should not cause an exception
|
||||||
@@ -16,7 +16,7 @@ arr[10]
|
|||||||
|
|
||||||
arr = [tuple()]
|
arr = [tuple()]
|
||||||
for a in [1,2]:
|
for a in [1,2]:
|
||||||
arr.append(a);
|
arr.append(a)
|
||||||
|
|
||||||
#? int() tuple()
|
#? int() tuple()
|
||||||
arr[10]
|
arr[10]
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ b
|
|||||||
temp
|
temp
|
||||||
|
|
||||||
a = 1
|
a = 1
|
||||||
temp = b;
|
temp = b
|
||||||
b = a
|
b = a
|
||||||
a = temp
|
a = temp
|
||||||
#? int()
|
#? int()
|
||||||
|
|||||||
Reference in New Issue
Block a user