Message912

Author saffi_h
Recipients
Date 2004-07-27.06:59:21
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
>>> import urllib2
>>> h=urllib2.HTTPHandler()
>>> dir(h)
[]


Istead of  :

Python 2.3.3 (#51, Dec 18 2003, 20:22:39) [MSC v.1200
32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for
more information.
>>> import urllib2
>>> h=urllib2.HTTPHandler()
>>> dir(h)
['__doc__', '__lt__', '__module__', 'add_parent',
'close', 'do_open', 'handler_o
rder', 'http_open']
>>>


Introspection would bring the needed info

History
Date User Action Args
2008-02-20 17:17:18adminlinkissue998512 messages
2008-02-20 17:17:18admincreate