execute_evaluated -> execute_with_values

This commit is contained in:
Dave Halter
2019-08-13 01:29:50 +02:00
parent 084995c378
commit 467839a9ea
14 changed files with 33 additions and 33 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ class CompiledValue(LazyContextWrapper):
def _get_wrapped_context(self):
instance, = builtin_from_name(
self.evaluator, self._compiled_obj.name.string_name).execute_evaluated()
self.evaluator, self._compiled_obj.name.string_name).execute_with_values()
return instance
def __repr__(self):
@@ -50,7 +50,7 @@ def create_simple_object(evaluator, obj):
def get_string_context_set(evaluator):
return builtin_from_name(evaluator, u'str').execute_evaluated()
return builtin_from_name(evaluator, u'str').execute_with_values()
def load_module(evaluator, dotted_name, **kwargs):