Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #77815
| Date | 2014-09-12 09:33 -0700 |
|---|---|
| From | Nathan McCorkle <nmz787@gmail.com> |
| References | <5411246B.8060700@alldunn.com> <180ac253-7f29-4157-aed6-38f929e00674@googlegroups.com> |
| Subject | Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.13977.1410540330.18130.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
On Friday, September 12, 2014 1:14:41 AM UTC-7, Marco Prosperi wrote: > > > I'm trying to pass my application from wxpython2.9.4 to 3.0.1 but there > seems to be still some of the problems that made me skip wxpy2.9.5: when I > close the main window of my application (windows7-64bit, python 2.7) I get > exceptions like this below (none with wxpy2.9.4). How can I avoid that my > users get this? this happens after my OnExit function is completed > > Marco > > Error in atexit._run_exitfuncs: > Traceback (most recent call last): > File "C:\Programmi\Python27\lib\atexit.py", line 24, in _run_exitfuncs > func(*targs, **kargs) > PyAssertionError: C++ assertion "GetEventHandler() == this" failed at > ..\..\src\ > common\wincmn.cpp(478) in wxWindowBase::~wxWindowBase(): any pushed event > handle > rs must have been removed > Error in sys.exitfunc: > Traceback (most recent call last): > File "C:\Programmi\Python27\lib\atexit.py", line 24, in _run_exitfuncs > func(*targs, **kargs) > wx._core.PyAssertionError: C++ assertion "GetEventHandler() == this" > failed > at . > .\..\src\common\wincmn.cpp(478) in wxWindowBase::~wxWindowBase(): any > pushed eve > nt handlers must have been removed > Post some code? Sounds like you're trying to interact with a wxPython object in a function using atexit.register(AtExit)... which likely is always going to happen after the wx Destroy method is all done.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1 Nathan McCorkle <nmz787@gmail.com> - 2014-09-12 09:33 -0700
csiph-web