Re: [PyCrust] Attribute list hook
Brought to you by:
pobrien
From: Neil H. <ne...@sc...> - 2001-08-11 22:38:08
|
Kevin Altis: > Is it possible to have doc strings for attributes? If so, that is another > thing I would like to be able to do, so that when you are using > command-completion you could also have a calltip pop up as you go over an > attribute to see what it is for and the types that are valid for it. There is no __doc__ attribute on 'virtual' attributes so this needs another method, such as getAttributeDoc(name). Real attributes can have __doc__ attributes so it should be possible to implement the UI Kevin wants although it should be optional as it sounds too flashy for me. Neil |