On Wed, May 25, 2016 at 7:41 PM Ethan Furman <ethan@stoneleaf.us> wrote:
it should just be:
a, b = mapping
Breaks backwards compatibility.
py> a, b = {'a': 1, 'b': 2}
py> a, b
('b', 'a')
Sorry for the double-post. I should have pondered longer before sending...