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.

Author devplayer
Recipients devplayer, eric.araujo, r.david.murray, terry.reedy
Date 2011-01-03.01:36:00
SpamBayes Score 0.0006855752
Marked as misclassified No
Message-id <1294018563.6.0.148290580665.issue10060@psf.upfronthosting.co.za>
In-reply-to
Content
import win32ui
from win32ui import GetMainFrame

dir(win32ui.GetMainFrame)
['__call__', '__class__', '__cmp__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']

dir(GetMainFrame)
['__call__', '__class__', '__cmp__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']


Is this normal? I'd expect at least GetWindowText() in the dir().
History
Date User Action Args
2011-01-03 01:36:03devplayersetrecipients: + devplayer, terry.reedy, eric.araujo, r.david.murray
2011-01-03 01:36:03devplayersetmessageid: <1294018563.6.0.148290580665.issue10060@psf.upfronthosting.co.za>
2011-01-03 01:36:00devplayerlinkissue10060 messages
2011-01-03 01:36:00devplayercreate