Commit 9f7c24fe authored by Stefan Behnel's avatar Stefan Behnel

Py2.4 test fix

parent 58d9361e
...@@ -124,6 +124,6 @@ def tuple_of_tuple_or_none(tuple x): ...@@ -124,6 +124,6 @@ def tuple_of_tuple_or_none(tuple x):
(1, 2, 3) (1, 2, 3)
>>> tuple_of_tuple_or_none(None) # doctest: +ELLIPSIS >>> tuple_of_tuple_or_none(None) # doctest: +ELLIPSIS
Traceback (most recent call last): Traceback (most recent call last):
TypeError: ...iterable... TypeError: ...itera...
""" """
return tuple(tuple(tuple(x))) return tuple(tuple(tuple(x)))
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