Alex Waygood <alex.wayg...@gmail.com> added the comment:

Reproduced on 3.11. The error occurs if a type is on the left-hand-side of the 
operand, as well as if a type is on the right-hand-side:

```
>>> int | "str"
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for |: 'type' and 'str'
>>> "str" | int
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for |: 'str' and 'type'
```

----------
nosy: +AlexWaygood, gvanrossum, kj
title: Type hint for methods -> PEP 604 Union syntax does not support forward 
references
type: compile error -> behavior
versions: +Python 3.11

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45857>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to