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
$ pip install nuitka overrides
$ python bug.py
B
$ python -m nuitka bug.py
...
Nuitka:INFO: Successfully created 'bug.bin'.
$ ./bug.bin
Traceback (most recent call last):
File "/mnt/c/code/bug.py", line 8, in<module>
class B(A):
File "/mnt/c/code/bug.py", line 9, in B
@override
File "/home/bers/.local/lib/python3.10/site-packages/overrides/overrides.py", line 143, in override
return _overrides(method, check_signature, check_at_runtime)
File "/home/bers/.local/lib/python3.10/site-packages/overrides/overrides.py", line 172, in _overrides
raise TypeError(f"{method.__qualname__}: No super class method found")
TypeError: B.hello: No super class method found
The text was updated successfully, but these errors were encountered:
(Cross-posted to Nuitka/Nuitka#2048 since I have no idea which instance may be best able to fix it.)
This code runs find in
python
but not after building withnuitka
1.4.4 on Python 3.10: (I think I remember it works after building withpyinstaller
.)The text was updated successfully, but these errors were encountered: