The following code: ``` from typing import Text, Union import os def test(path): # type: (Union[bytes, Text]) -> None f = os.open(path, os.O_RDONLY) ``` Passes with --py2 but fails in python3 as follows: `error: Type argument 1 of "open" has incompatible value "Union[bytes, str]"` @JukkaL