mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-06 12:54:29 +08:00
17 lines
179 B
Python
17 lines
179 B
Python
#: E231:7
|
|
a = (1,2)
|
|
#: E231:5
|
|
a[b1,:]
|
|
#: E231:10
|
|
a = [{'a':''}]
|
|
# Okay
|
|
a = (4,)
|
|
#: E202:7
|
|
b = (5, )
|
|
c = {'text': text[5:]}
|
|
|
|
result = {
|
|
'key1': 'value',
|
|
'key2': 'value',
|
|
}
|