1
0
forked from VimPlug/jedi

Use unicode always for getting special objects

This commit is contained in:
Dave Halter
2017-12-28 22:41:20 +01:00
parent 9906c4f9fc
commit 5755d5a4ee
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ class Evaluator(object):
@property
@evaluator_function_cache()
def builtins_module(self):
return compiled.get_special_object(self, 'BUILTINS')
return compiled.get_special_object(self, u'BUILTINS')
def reset_recursion_limitations(self):
self.recursion_detector = recursion.RecursionDetector()