Skip to content

Commit

Permalink
test special case typing.Any
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jul 23, 2022
1 parent 0ca195f commit ee740ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dill/tests/test_selected.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ def test_frame_related():
if verbose: print ("")

def test_typing():
import typing #FIXME: test special cases
import typing
x = typing.Any
assert x == dill.copy(x)
x = typing.Dict[int, str]
assert x == dill.copy(x)
x = typing.List[int]
Expand Down

0 comments on commit ee740ab

Please sign in to comment.