Commit 4a8f753f authored by Stefan Behnel's avatar Stefan Behnel

export set builtin type

parent 6aa1871b
......@@ -352,11 +352,12 @@ def init_builtins():
init_builtin_funcs()
init_builtin_types()
init_builtin_structs()
global list_type, tuple_type, dict_type, unicode_type, type_type
global list_type, tuple_type, dict_type, set_type, unicode_type, type_type
type_type = builtin_scope.lookup('type').type
list_type = builtin_scope.lookup('list').type
tuple_type = builtin_scope.lookup('tuple').type
dict_type = builtin_scope.lookup('dict').type
set_type = builtin_scope.lookup('set').type
unicode_type = builtin_scope.lookup('unicode').type
init_builtins()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment