# Bug report ### Bug description: ### Python 3.13.2 ```pycon >>> from typing import Union >>> Union[int, str] is Union[int, str] True ``` ### Python 3.14.0a6 ```pycon >>> from typing import Union >>> Union[int, str] is Union[int, str] False ``` Is this change desired, is it documented? This breaks tests in https://github.com/python-attrs/cattrs/blob/d8f17b7e7e57006171027df4d647a6fe068b623e/tests/test_disambiguators.py#L211 ```python assert fn({"op": 0, "t": "MESSAGE_CREATE"}) is Union[F, G] ``` ### CPython versions tested on: 3.14 ### Operating systems tested on: Linux <!-- gh-linked-prs --> ### Linked PRs * gh-131941 <!-- /gh-linked-prs -->
Bug report
Bug description:
Python 3.13.2
Python 3.14.0a6
Is this change desired, is it documented? This breaks tests in https://github.com/python-attrs/cattrs/blob/d8f17b7e7e57006171027df4d647a6fe068b623e/tests/test_disambiguators.py#L211
CPython versions tested on:
3.14
Operating systems tested on:
Linux
Linked PRs