Skip to content

Commit 826ece2

Browse files
committed
tests: Fix builtin functions, Separate builtin functions and types
Fixes #5
1 parent 15c69d6 commit 826ece2

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

tests/test.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,18 @@ async def Test
3131

3232
True False Ellipsis None NotImplemented
3333

34-
# Builtin function and types.
35-
36-
__import__ abs all any apply basestring bool buffer callable chr classmethod
37-
cmp coerce compile complex delattr dict dir divmod enumerate eval execfile file
38-
filter float frozenset getattr globals hasattr hash help hex id input int
39-
intern isinstance issubclass iter len list locals long map max min object oct
40-
open ord pow property range raw_input reduce reload repr reversed round set
41-
setattr slice sorted staticmethod str sum super tuple type unichr unicode vars
42-
xrange zip
34+
# Bultin types
35+
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() property()
44+
range() raw_input() reduce() reload() repr() reversed() round() setattr() slice() sorted()
45+
staticmethod() sum() super() type() unichr() unicode() vars() xrange() zip()
4346

4447
# Builtin exceptions and warnings.
4548

0 commit comments

Comments
 (0)