Would this be called a bug in inspect ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stef Mientki

    Would this be called a bug in inspect ?

    hello,


    I'm not familiar with inspect,
    but I get an error (see below) in
    getmembers ( wx )

    Of course this is bug in wx .

    But would you also call this a bug in inspect ?
    (inspect crashes and doesn't continue with th rest of the code, nor it
    returns the already gathered data)

    thanks,
    Stef
    >>import wx
    >>wx.version( )
    '2.8.7.1 (msw-unicode)'
    >>from inspect import *
    >>getmembers(wx )
    Traceback (most recent call last):
    File "<interacti ve input>", line 1, in <module>
    File "<from
    <Rpyc.Connectio n.Connection(<C hannel(<SocketS tream(127.0.0.1 :1184)>)>)>>",
    line 517, in pphook
    File "P:\Python\Lib\ pprint.py", line 55, in pprint
    printer.pprint( object)
    File "P:\Python\Lib\ pprint.py", line 106, in pprint
    self._format(ob ject, self._stream, 0, 0, {}, 0)
    File "P:\Python\Lib\ pprint.py", line 129, in _format
    rep = self._repr(obje ct, context, level - 1)
    File "P:\Python\Lib\ pprint.py", line 195, in _repr
    self._depth, level)
    File "P:\Python\Lib\ pprint.py", line 207, in format
    return _safe_repr(obje ct, context, maxlevels, level)
    File "P:\Python\Lib\ pprint.py", line 283, in _safe_repr
    orepr, oreadable, orecur = _safe_repr(o, context, maxlevels, level)
    File "P:\Python\Lib\ pprint.py", line 283, in _safe_repr
    orepr, oreadable, orecur = _safe_repr(o, context, maxlevels, level)
    File "P:\Python\Lib\ pprint.py", line 292, in _safe_repr
    rep = repr(object)
    File "P:\Python\lib\ site-packages\wx-2.8-msw-unicode\wx\_gdi .py", line
    242, in __repr__
    def __repr__(self): return 'wx.Colour' +
    str(self.Get(Tr ue))
    File "P:\Python\lib\ site-packages\wx-2.8-msw-unicode\wx\_gdi .py", line
    230, in Get
    return _gdi_.Colour_Ge t(*args, **kwargs)
    TypeError: in method 'Colour_Get', expected argument 1 of type 'wxColour *'

Working...