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 ping
Recipients
Date 2001-04-13.13:11:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Calling an unbound method on a C extension class
without providing an instance can yield a segfault.
Try "Exception.__init__()" or "ValueError.__init__()".

This is a simple fix.  The error-reporting bits in
call_method mistakenly treat the misleadingly-named
variable "func" as a function, when in fact it is a
method.
If we let get_func_name take care of the work, all is
fine.
History
Date User Action Args
2007-08-23 15:04:44adminlinkissue415879 messages
2007-08-23 15:04:44admincreate