You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python test.py
Traceback (most recent call last):
File "/home/xl0/work/projects/lovely-tensors/test.py", line 8, in <module>
f(1)
File "/home/xl0/work/projects/lovely-tensors/test.py", line 6, in f
return x/0
ZeroDivisionError: division by zero
Works with 3.12:
$ python --version
Python 3.12.7
$ python test.py
Traceback (most recent call last):
File "/home/xl0/work/projects/lovely-tensors/test.py", line 8, in <module>
f(1)
└ <function f at 0x7bbba181d760>
File "/home/xl0/work/projects/lovely-tensors/test.py", line 6, in f
return x/0
└ 1
ZeroDivisionError: division by zero
The text was updated successfully, but these errors were encountered:
Works with 3.12:
The text was updated successfully, but these errors were encountered: