[issue42879] SystemError from class 'int'

2021-01-13 Thread STINNER Victor
STINNER Victor added the comment: > I'll close this here, since that report indicates a bug in Pygame. FYI I created bpo-42923 "Py_FatalError(): dump the list of extension modules" to help users to understand that the error can come from third party C extensions rather than Python itself. -

[issue42879] SystemError from class 'int'

2021-01-13 Thread Mark Dickinson
Mark Dickinson added the comment: Downstream issue is here: https://github.com/pygame/pygame/issues/2442 I'll close this here, since that report indicates a bug in Pygame. -- resolution: -> third party stage: -> resolved status: open -> closed __

[issue42879] SystemError from class 'int'

2021-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: With debug build of Python I get a crash in other place: $ ./python -Xdev Movement.py pygame 1.9.6 Hello from the pygame community. https://www.pygame.org/contribute.html python: Objects/abstract.c:155: PyObject_GetItem: Assertion `(item != NULL) ^ (PyErr_

[issue42879] SystemError from class 'int'

2021-01-10 Thread Jason Oliver
Jason Oliver added the comment: I will submit the bug report to the pygame bug tracker. -- ___ Python tracker ___ ___ Python-bugs-l

[issue42879] SystemError from class 'int'

2021-01-10 Thread Mark Dickinson
Mark Dickinson added the comment: This is more likely to be a bug in Pygame than in Python itself. What's likely happening here is that some part of the Pygame machinery is setting an exception state but then returning a value as normal. (Generally, if some function in a C extension sets an

[issue42879] SystemError from class 'int'

2021-01-09 Thread Jason Oliver
New submission from Jason Oliver : This is my first bug report so I hope that this is correctly formatted. I am learning how to use pygame and encountered the following error: SystemError: returned a result with an error set I googled the error message and came across the following answer on