From 826ece295de3093b89db34d8a96e72920661df09 Mon Sep 17 00:00:00 2001 From: nfnty Date: Sun, 19 Feb 2017 14:27:32 +0100 Subject: [PATCH] tests: Fix builtin functions, Separate builtin functions and types Fixes #5 --- tests/test.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/tests/test.py b/tests/test.py index 83e43cc..65fa4c3 100644 --- a/tests/test.py +++ b/tests/test.py @@ -31,15 +31,18 @@ async for True False Ellipsis None NotImplemented -# Builtin function and types. +# Bultin types -__import__ abs all any apply basestring bool buffer callable chr classmethod -cmp coerce compile complex delattr dict dir divmod enumerate eval execfile file -filter float frozenset getattr globals hasattr hash help hex id input int -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 -setattr slice sorted staticmethod str sum super tuple type unichr unicode vars -xrange zip +bool float frozenset dict int list object str tuple set + +# Builtin functions + +__import__() abs() all() any() apply() basestring() buffer() callable() chr() classmethod() +cmp() coerce() compile() complex() delattr() dir() divmod() enumerate() eval() execfile() file() +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.