Commit f8c223d7 authored by Robert Bradshaw's avatar Robert Bradshaw

Python 3 set fix.

parent 9bb83176
...@@ -398,8 +398,8 @@ def unpack_literal_none_to_exttype(): ...@@ -398,8 +398,8 @@ def unpack_literal_none_to_exttype():
# Github issue #1523 # Github issue #1523
def test_unpack_resultref(): def test_unpack_resultref():
""" """
>>> test_unpack_resultref() >>> test_unpack_resultref() == ((1, set()), 1, set())
((1, set([])), 1, set([])) True
""" """
a = b, c = 1, set() a = b, c = 1, set()
return a, b, c return a, b, c
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment