forked from MagicStack/MagicPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathescaping1.py
More file actions
43 lines (40 loc) · 2.8 KB
/
escaping1.py
File metadata and controls
43 lines (40 loc) · 2.8 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
a = "simple \\ string \
foo \' \" \a \b \c \f \n \r \t \v \5 \55 \555 \05 \005"
a : source.python
: source.python
= : keyword.operator.assignment.python, source.python
: source.python
" : punctuation.definition.string.begin.python, source.python, string.quoted.single.python
simple : source.python, string.quoted.single.python
\\ : constant.character.escape.python, source.python, string.quoted.single.python
string : source.python, string.quoted.single.python
\ : constant.language.python, source.python, string.quoted.single.python
foo : source.python, string.quoted.single.python
\' : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\" : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\a : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\b : constant.character.escape.python, source.python, string.quoted.single.python
\c : source.python, string.quoted.single.python
\f : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\n : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\r : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\t : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\v : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\5 : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\55 : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\555 : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\05 : constant.character.escape.python, source.python, string.quoted.single.python
: source.python, string.quoted.single.python
\005 : constant.character.escape.python, source.python, string.quoted.single.python
" : punctuation.definition.string.end.python, source.python, string.quoted.single.python