Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77815 > unrolled thread

Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1

Started byNathan McCorkle <nmz787@gmail.com>
First post2014-09-12 09:33 -0700
Last post2014-09-12 09:33 -0700
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1 Nathan McCorkle <nmz787@gmail.com> - 2014-09-12 09:33 -0700

#77815 — Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1

FromNathan McCorkle <nmz787@gmail.com>
Date2014-09-12 09:33 -0700
SubjectMarco's atexit issue was: Re: ANN: wxPython 3.0.1.1
Message-ID<mailman.13977.1410540330.18130.python-list@python.org>

[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.
 

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web