forked from MagicStack/MagicPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbug1.py
More file actions
47 lines (43 loc) · 2.26 KB
/
bug1.py
File metadata and controls
47 lines (43 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# issue 150
record = {
"a": {k: str(v) for k, v in foo if ""}
}
# : comment.line.number-sign.python, punctuation.definition.comment.python, source.python
issue 150 : comment.line.number-sign.python, source.python
record : source.python
: source.python
= : keyword.operator.assignment.python, source.python
: source.python
{ : punctuation.definition.dict.begin.python, source.python
: source.python
" : punctuation.definition.string.begin.python, source.python, string.quoted.single.python
a : source.python, string.quoted.single.python
" : punctuation.definition.string.end.python, source.python, string.quoted.single.python
: : punctuation.separator.dict.python, source.python
: source.python
{ : punctuation.definition.dict.begin.python, source.python
k : source.python
: : punctuation.separator.dict.python, source.python
: source.python
str : meta.function-call.python, source.python, support.type.python
( : meta.function-call.python, punctuation.definition.arguments.begin.python, source.python
v : meta.function-call.arguments.python, meta.function-call.python, source.python
) : meta.function-call.python, punctuation.definition.arguments.end.python, source.python
: source.python
for : keyword.control.flow.python, source.python
: source.python
k : source.python
, : punctuation.separator.element.python, source.python
: source.python
v : source.python
: source.python
in : keyword.control.flow.python, source.python
: source.python
foo : source.python
: source.python
if : keyword.control.flow.python, source.python
: source.python
" : punctuation.definition.string.begin.python, source.python, string.quoted.single.python
" : punctuation.definition.string.end.python, source.python, string.quoted.single.python
} : punctuation.definition.dict.end.python, source.python
} : punctuation.definition.dict.end.python, source.python