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 baijum81
Recipients
Date 2006-09-09.13:14:53
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=565450

Due to this bug, 'pydoc modulename' is not working.
pydoc tries to access __name__ attribute of classes,
so it raises attribute error. (actually it is not a class,
but an instance only).
So please increase the priority of this bug.

And this case is also not working (same issue):

class X:
  __bases__ = ()

x = X()
History
Date User Action Args
2007-08-23 14:12:24adminlinkissue718532 messages
2007-08-23 14:12:24admincreate