8
8
9
9
# Keywords.
10
10
11
- with break continue del exec return pass print raise global assert lambda yield
11
+ with break continue del return pass raise global assert lambda yield
12
12
for while if elif else import as try except finally
13
13
14
14
from test import var as name
@@ -22,6 +22,13 @@ class Classname
22
22
def функция
23
23
class Класс
24
24
25
+ # Keywords: Python 2
26
+
27
+ exec
28
+ print
29
+
30
+ # Keywords: Python 3
31
+
25
32
await
26
33
async def Test
27
34
async with
@@ -33,16 +40,48 @@ async def Test
33
40
34
41
# Bultin types
35
42
36
- bool float frozenset dict int list object str tuple set
37
-
38
- # Builtin functions
39
-
40
- __import__ abs all any apply basestring buffer callable chr classmethod
41
- cmp coerce compile complex delattr dir divmod enumerate eval execfile file
42
- filter getattr globals hasattr hash help hex id input intern isinstance
43
- issubclass iter len locals long map max min oct open ord pow print property
44
- range raw_input reduce reload repr reversed round setattr slice sorted
45
- staticmethod sum super type unichr unicode vars xrange zip
43
+ bool bytearray dict float frozenset int list object set str tuple
44
+
45
+ # Builtin functions: Python 2
46
+
47
+ abs () divmod () input () open () staticmethod ()
48
+ all () enumerate () int () ord () str ()
49
+ any () eval () isinstance () pow () sum ()
50
+ basestring () execfile () issubclass () print () super ()
51
+ bin () file () iter () property () tuple ()
52
+ bool () filter () len () range () type ()
53
+ bytearray () float () list () raw_input () unichr ()
54
+ callable () format () locals () reduce () unicode ()
55
+ chr () frozenset () long () reload () vars ()
56
+ classmethod () getattr () map () repr () xrange ()
57
+ cmp () globals () max () reversed () zip ()
58
+ compile () hasattr () memoryview () round () __import__ ()
59
+ complex () hash () min () set ()
60
+ delattr () help () next () setattr ()
61
+ dict () hex () object () slice ()
62
+ dir () id () oct () sorted ()
63
+
64
+ apply ()
65
+ buffer ()
66
+ coerce ()
67
+ intern ()
68
+
69
+ # Builtin functions: Python 3
70
+
71
+ abs () dict () help () min () setattr ()
72
+ all () dir () hex () next () slice ()
73
+ any () divmod () id () object () sorted ()
74
+ ascii () enumerate () input () oct () staticmethod ()
75
+ bin () eval () int () open () str ()
76
+ bool () exec () isinstance () ord () sum ()
77
+ bytearray () filter () issubclass () pow () super ()
78
+ bytes () float () iter () print () tuple ()
79
+ callable () format () len () property () type ()
80
+ chr () frozenset () list () range () vars ()
81
+ classmethod () getattr () locals () repr () zip ()
82
+ compile () globals () map () reversed () __import__ ()
83
+ complex () hasattr () max () round ()
84
+ delattr () hash () memoryview () set ()
46
85
47
86
# Builtin exceptions and warnings.
48
87
0 commit comments