In python I've found that sometimes I need to change dictionary to a list of key, value pairs. So from that `{'key1: 'value1', 'key2': 'value2'}` `(('key1', 'value1), ('key2', 'value2'))` I don't think it's possible with current implementation because of lack of ability to use g modifier.