mirror of
https://github.com/vim-python/python-syntax.git
synced 2025-12-08 21:54:48 +08:00
tests: Fix builtin functions, Separate builtin functions and types
Fixes #5
This commit is contained in:
@@ -31,15 +31,18 @@ async for
|
|||||||
|
|
||||||
True False Ellipsis None NotImplemented
|
True False Ellipsis None NotImplemented
|
||||||
|
|
||||||
# Builtin function and types.
|
# Bultin types
|
||||||
|
|
||||||
__import__ abs all any apply basestring bool buffer callable chr classmethod
|
bool float frozenset dict int list object str tuple set
|
||||||
cmp coerce compile complex delattr dict dir divmod enumerate eval execfile file
|
|
||||||
filter float frozenset getattr globals hasattr hash help hex id input int
|
# Builtin functions
|
||||||
intern isinstance issubclass iter len list locals long map max min object oct
|
|
||||||
open ord pow property range raw_input reduce reload repr reversed round set
|
__import__() abs() all() any() apply() basestring() buffer() callable() chr() classmethod()
|
||||||
setattr slice sorted staticmethod str sum super tuple type unichr unicode vars
|
cmp() coerce() compile() complex() delattr() dir() divmod() enumerate() eval() execfile() file()
|
||||||
xrange zip
|
filter() getattr() globals() hasattr() hash() help() hex() id() input() intern() isinstance()
|
||||||
|
issubclass() iter() len() locals() long() map() max() min() oct() open() ord() pow() property()
|
||||||
|
range() raw_input() reduce() reload() repr() reversed() round() setattr() slice() sorted()
|
||||||
|
staticmethod() sum() super() type() unichr() unicode() vars() xrange() zip()
|
||||||
|
|
||||||
# Builtin exceptions and warnings.
|
# Builtin exceptions and warnings.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user