Skip to content

Commit

Permalink
Fix test in Py2.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jun 5, 2020
1 parent bbef4d7 commit 4728b8a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/run/cython3.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@ def except_as_deletes_target_in_gen(x, a):

def nested_except_gh3666(a=False, b=False):
"""
>>> nested_except_gh3666()
'A'
>>> nested_except_gh3666(a=True)
'B-V'
>>> nested_except_gh3666(a=True, b=True)
'B-V-T'
>>> print(nested_except_gh3666())
A
>>> print(nested_except_gh3666(a=True))
B-V
>>> print(nested_except_gh3666(a=True, b=True))
B-V-T
"""
try:
if a:
Expand Down

0 comments on commit 4728b8a

Please sign in to comment.