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
Hello, a World !
Traceback (most recent call last):
File "C:/..../python-3.13.0b1.amd64/Lib/site-packages/sqlite_bro/testb.py", line 16, in <module>
test()
File "C:/.../python-3.13.0b1.amd64/Lib/site-packages/sqlite_bro/testb.py", line 14, in test
be=eval('py_hellob');
File "<string>", line 1, in <module>__import__('idlelib.run').run.main(True)
NameError: name 'py_hellob' is not defined. Did you mean: 'py_helloa'?
a="""def py_helloa(): "hello world" return ("Hello, a World !");""";
exec(a, globals(), locals());
ae=eval('py_helloa');
print(ae())
deftest():
b="""def py_hellob(): "hello world" return ("Hello, b World !");""";
exec(b, globals(), locals());
be=eval('py_hellob');
print(be())
test()
CPython versions tested on:
3.12, 3.13
Operating systems tested on:
Windows
The text was updated successfully, but these errors were encountered:
Bug report
Bug description:
this code works on Python-3.12 and gives
on Python-3.13.0b1 it fails on the b part:
CPython versions tested on:
3.12, 3.13
Operating systems tested on:
Windows
The text was updated successfully, but these errors were encountered: