def get_context(params): context = get_global_vars() context.update(params) return context
def get_context(params): context = copy.copy(get_global_vars()) context.update(params) return context