Lines Matching full:val
140 return dict((name, pickle.loads(val))
141 for name, val in zip(self.global_names, self.globals))
249 for name, val in session.globals_dict().items():
251 statement_module.__dict__[name] = val
276 for name, val in statement_module.__dict__.items():
277 if name not in old_globals or val != old_globals[name]:
278 new_globals[name] = val
280 if True in [isinstance(val, UNPICKLABLE_TYPES)
281 for val in new_globals.values()]:
290 for name, val in new_globals.items():
292 session.set_global(name, val)