Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the repr for OrderedSet to actually execute correctly
Old: ``` OrderedSet("'foo'", "'bar'", "'baz'") ``` New: ``` OrderedSet(['foo', 'bar', 'baz']) ``` The old one looked nasty *and* was totally non-functional.
- Loading branch information