1
0
forked from VimPlug/jedi

Finally fixing the Python 2 issues with static_getattr.

This commit is contained in:
Dave Halter
2017-08-13 22:24:50 +02:00
parent 13a0d63091
commit a37201bc1d
3 changed files with 89 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ from jedi.evaluate.compiled import mixed
from jedi.evaluate.context import Context
class NamespaceObject():
class NamespaceObject(object):
def __init__(self, dct):
self.__dict__ = dct