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: Can't browse methods and Classes
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: mhammond Nosy List: hoka, jhylton, loewis, mhammond
Priority: normal Keywords:

Created on 2003-05-20 12:19 by hoka, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Messages (3)
msg16081 - (view) Author: hoka (hoka) Date: 2003-05-20 12:19
If i want to show the method and classes under 
Browse Python Path i got every time this error:

  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\hierlist.py", line 
123, in OnTreeItemExpanding
    self.AddSubList(itemHandle, self.GetSubList
(item))
  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\hierlist.py", line 
137, in AddSubList
    self.AddItem(parentHandle, item)
  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\hierlist.py", line 
140, in AddItem
    text = self.GetText(item)
  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\hierlist.py", line 
266, in GetText
    return self.DelegateCall( item.GetText )
  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\hierlist.py", line 
255, in DelegateCall
    return fn()
  File "D:\Python23\lib\site-
packages\Pythonwin\pywin\tools\browseProjects.p
y", line 26, in GetText
    return self.name + self.suffix
TypeError: unsupported operand type(s) for 
+: 'instance' and 'str'
win32ui: Exception in OnNotify() handler

Greetings

Kai
msg16082 - (view) Author: Jeremy Hylton (jhylton) (Python triager) Date: 2003-05-21 21:08
Logged In: YES 
user_id=31392

I think this is a win32 bug, not a Python bug, right, Mark?
msg16083 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2003-06-14 08:28
Logged In: YES 
user_id=21627

Indeed it sounds like one. Closing it here; hoka, please
report it to Mark, as he is the PythonWin maintainer. I believe

https://sourceforge.net/projects/pywin32/

would be appropriate.
History
Date User Action Args
2022-04-10 16:08:50adminsetgithub: 38528
2003-05-20 12:19:37hokacreate