mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
removed some merge conflicts again
This commit is contained in:
10
builtin.py
10
builtin.py
@@ -200,6 +200,12 @@ elif current.arr_type == parsing.Array.DICT:
|
||||
result.append(__builtin__.dict())
|
||||
"""
|
||||
|
||||
class Builtin(object):
|
||||
class _Builtin(object):
|
||||
_builtins = Parser('__builtin__')
|
||||
scope = _builtins.parser.top
|
||||
|
||||
@property
|
||||
def scope(self):
|
||||
return self._builtins.parser.top
|
||||
|
||||
|
||||
Builtin = _Builtin()
|
||||
|
||||
Reference in New Issue
Block a user