wx._core.wxAssertionError: C++ assertion “GetEventHandler() == this“ failed at ..\..\src\common\winc

本文档介绍了在运行RobotIDE(RIDE)时遇到的wxAssertionError报错,该错误与locale设置有关。通过修改`robotide/application/application.py`文件中初始化时的locale设置,将`self._initial_locale=wx.Locale(wx.LANGUAGE_ENGLISH)`改为`self.locale=wx.Locale(wx.LANGUAGE_ENGLISH)`,可以解决启动问题,确保程序以英语环境运行。重新运行`python ride.py`后,问题得到解决。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

运行ride.py报错:

Traceback (most recent call last):
  File "E:\workspace\python386\lib\site-packages\robotide\application\application.py", line 58, in OnInit
    self.frame = RideFrame(self, self._controller)
  File "E:\workspace\python386\lib\site-packages\robotide\ui\mainframe.py", line 175, in __init__
    self._init_ui()
  File "E:\workspace\python386\lib\site-packages\robotide\ui\mainframe.py", line 279, in _init_ui
    self.tree = Tree(self, self.actions,
  File "E:\workspace\python386\lib\site-packages\robotide\ui\tree.py", line 86, in __init__
    self._images = TreeImageList()
  File "E:\workspace\python386\lib\site-packages\robotide\ui\images.py", line 42, in __init__
    TestCaseController: _TreeImage(self, 'robot.png'),
  File "E:\workspace\python386\lib\site-packages\robotide\ui\images.py", line 80, in __init__
    self.normal = self._get_image(image_list, normal)
  File "E:\workspace\python386\lib\site-packages\robotide\ui\images.py", line 91, in _get_image
    img = wx.Image(path, wx.BITMAP_TYPE_PNG).ConvertToBitmap()
wx._core.wxAssertionError: C++ assertion "strcmp(setlocale(LC_ALL, NULL), "C") == 0" failed at ..\..\src\common\intl.cpp(1579) in wxLocale::GetInfo(): You probably called setlocale() directly instead of using wxLocale and now there is a mismatch between C/C++ and Windows locale.
Things are going to break, please only change locale by creating wxLocale objects to avoid this!
OnInit returned false, exiting...
Error in atexit._run_exitfuncs:
wx._core.wxAssertionError: C++ assertion "GetEventHandler() == this" failed at ..\..\src\common\wincmn.cpp(478) in wxWindowBase::~wxWindowBase(): any pushed event handlers must have been removed

解决办法:
打开E:\workspace\python386\lib\site-packages\robotide\application\application.py文档,修改

self._initial_locale = wx.Locale(wx.LANGUAGE_ENGLISH)

self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)

重新运行python ride.py就好了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值