Home | History | Annotate | Download | only in Interpreter

Lines Matching full:global_dict

1652 global_dict = globals()");   // Grab the global dictionary
1654 auto_generated_function.AppendString (" old_keys = global_dict.keys()"); // Save list of keys in global dict
1655 auto_generated_function.AppendString (" global_dict.update (internal_dict)"); // Add the session dictionary to the
1668 auto_generated_function.AppendString (" internal_dict[key] = global_dict[key]"); // Update session dict values
1670 auto_generated_function.AppendString (" del global_dict[key]"); // ...then remove key/value from global dict