88
99# Keywords.
1010
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
1212for while if elif else import as try except finally
1313
1414from test import var as name
@@ -22,6 +22,13 @@ class Classname
2222def функция
2323class Класс
2424
25+ # Keywords: Python 2
26+
27+ exec
28+ print
29+
30+ # Keywords: Python 3
31+
2532await
2633async def Test
2734async with
@@ -33,16 +40,48 @@ async def Test
3340
3441# Bultin types
3542
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 ()
4685
4786# Builtin exceptions and warnings.
4887
0 commit comments