mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Python 2 compatibility
This commit is contained in:
@@ -324,7 +324,7 @@ class DirectObjectAccess(object):
|
|||||||
name = try_to_get_name(type(self._obj))
|
name = try_to_get_name(type(self._obj))
|
||||||
if name is None:
|
if name is None:
|
||||||
return ()
|
return ()
|
||||||
return tuple(name.split('.'))
|
return tuple(force_unicode(n) for n in name.split('.'))
|
||||||
|
|
||||||
def dir(self):
|
def dir(self):
|
||||||
return list(map(force_unicode, dir(self._obj)))
|
return list(map(force_unicode, dir(self._obj)))
|
||||||
|
|||||||
Reference in New Issue
Block a user