This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: broken pygame integration into wxpython
Type: behavior Stage: resolved
Components: Versions: Python 3.9
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: MonchyTales, serhiy.storchaka
Priority: normal Keywords:

Created on 2021-01-01 19:39 by MonchyTales, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg384203 - (view) Author: monchy (MonchyTales) Date: 2021-01-01 19:39
in previous python verions a pygame window could be embedded into wxpython by assigning the SDL_WINDOWID to the current wx.Panel.GetHandle() and the SDL_VIDEODRIVER to 'windib' before importing python
the same code creates a separate pygame window in the newest python version
a basic implementation can be found here:
https://github.com/Monchytales/Puppet-Theatre/blob/main/pygame_panel.py
msg384206 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-01-01 20:54
Pygame and wxpython are not parts of the stdlib. Please use an appropriate bug tracker.
msg384207 - (view) Author: monchy (MonchyTales) Date: 2021-01-01 23:30
The only thing I changed was the version of python I was using, which means
that whatever caused the problem was python itself
if something was changed in how the interpreter operates the environmental
variables or something then that might do it
PYTHON broke MY software, so this and this alone is the appropriate bug
tracker

On Fri, 1 Jan 2021 at 15:54, Serhiy Storchaka <report@bugs.python.org>
wrote:

>
> Serhiy Storchaka <storchaka+cpython@gmail.com> added the comment:
>
> Pygame and wxpython are not parts of the stdlib. Please use an appropriate
> bug tracker.
>
> ----------
> nosy: +serhiy.storchaka
> resolution:  -> third party
> stage:  -> resolved
> status: open -> closed
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue42805>
> _______________________________________
>
History
Date User Action Args
2022-04-11 14:59:39adminsetgithub: 86971
2021-01-01 23:30:03MonchyTalessetmessages: + msg384207
2021-01-01 20:54:44serhiy.storchakasetstatus: open -> closed

nosy: + serhiy.storchaka
messages: + msg384206

resolution: third party
stage: resolved
2021-01-01 19:39:57MonchyTalescreate