Message71553
| Author | vstinner |
|---|---|
| Recipients | pitrou, vstinner |
| Date | 2008-08-20.16:01:12 |
| SpamBayes Score | 0.01895855 |
| Marked as misclassified | No |
| Message-id | <1219248073.35.0.647382136643.issue3611@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
About the PyEval_CallObject() call in errors.c, here is an example:
Call exception<0x81dcee0>(args<0x8751dc4>)
with exception=
object : <class 'AttributeError'>
type : type
refcount: 6
address : 0x81dcee0
and args=
object : ("type object 'ProcError' has no
attribute '__subclasscheck__'",)
type : tuple
refcount: 1
address : 0x8751dc4
This exception may comes from PyObject_IsSubclass() which calls
PyObject_GetAttr(cls, "__subclasscheck__"). |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008-08-20 16:01:13 | vstinner | set | recipients: + vstinner, pitrou |
| 2008-08-20 16:01:13 | vstinner | set | messageid: <1219248073.35.0.647382136643.issue3611@psf.upfronthosting.co.za> |
| 2008-08-20 16:01:12 | vstinner | link | issue3611 messages |
| 2008-08-20 16:01:12 | vstinner | create | |