mirror of
https://github.com/github/semantic.git
synced 2024-11-28 01:47:01 +03:00
Update newlines
This commit is contained in:
parent
6c1371e418
commit
f059aec454
1
test/fixtures/python/assignment.A.py
vendored
1
test/fixtures/python/assignment.A.py
vendored
@ -1,4 +1,3 @@
|
|||||||
a = 1
|
a = 1
|
||||||
a, b = 1, 2
|
a, b = 1, 2
|
||||||
a, = 1, 2
|
a, = 1, 2
|
||||||
|
|
||||||
|
1
test/fixtures/python/attribute.A.py
vendored
1
test/fixtures/python/attribute.A.py
vendored
@ -1,2 +1 @@
|
|||||||
a.b
|
a.b
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
a += 1
|
a += 1
|
||||||
b >>= 2
|
b >>= 2
|
||||||
c //= 1
|
c //= 1
|
||||||
|
|
||||||
|
2
test/fixtures/python/call.A.py
vendored
2
test/fixtures/python/call.A.py
vendored
@ -1,3 +1,3 @@
|
|||||||
foo(a)
|
foo(a)
|
||||||
bar()
|
bar()
|
||||||
bazz(c,d)
|
bazz(c,d)
|
||||||
|
2
test/fixtures/python/dictionary.A.py
vendored
2
test/fixtures/python/dictionary.A.py
vendored
@ -1,3 +1,3 @@
|
|||||||
{}
|
{}
|
||||||
{a: 1}
|
{a: 1}
|
||||||
{foo: b, bar: c}
|
{foo: b, bar: c}
|
||||||
|
2
test/fixtures/python/identifier.A.py
vendored
2
test/fixtures/python/identifier.A.py
vendored
@ -1 +1 @@
|
|||||||
a
|
a
|
||||||
|
2
test/fixtures/python/identifier.B.py
vendored
2
test/fixtures/python/identifier.B.py
vendored
@ -1 +1 @@
|
|||||||
aa
|
aa
|
||||||
|
2
test/fixtures/python/list.A.py
vendored
2
test/fixtures/python/list.A.py
vendored
@ -1,3 +1,3 @@
|
|||||||
[]
|
[]
|
||||||
[1,2,3]
|
[1,2,3]
|
||||||
[a,b,c,]
|
[a,b,c,]
|
||||||
|
2
test/fixtures/python/subscript.A.py
vendored
2
test/fixtures/python/subscript.A.py
vendored
@ -1 +1 @@
|
|||||||
a[b]
|
a[b]
|
||||||
|
2
test/fixtures/python/subscript.B.py
vendored
2
test/fixtures/python/subscript.B.py
vendored
@ -1 +1 @@
|
|||||||
b[a]
|
b[a]
|
||||||
|
2
test/fixtures/python/unary-operator.A.py
vendored
2
test/fixtures/python/unary-operator.A.py
vendored
@ -1,3 +1,3 @@
|
|||||||
-a
|
-a
|
||||||
+b
|
+b
|
||||||
~c
|
~c
|
||||||
|
2
test/fixtures/python/unary-operator.B.py
vendored
2
test/fixtures/python/unary-operator.B.py
vendored
@ -1,3 +1,3 @@
|
|||||||
~a
|
~a
|
||||||
-b
|
-b
|
||||||
+c
|
+c
|
||||||
|
Loading…
Reference in New Issue
Block a user