Message316340
| Author | eric.smith |
|---|---|
| Recipients | Ricyteach, eric.smith |
| Date | 2018-05-09.22:38:47 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1525905527.56.0.682650639539.issue33452@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I'm okay with the concept, but I don't know how to implement it. You need to not only know if a class has a __init__, but also if it's expected to be called. For example, these don't normally get called, but if you inherit from them (and everyone does inherit from object) you don't want a warning. >>> hasattr(int, '__init__') True >>> hasattr(object, '__init__') True I'm open to ideas. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-05-09 22:38:47 | eric.smith | set | recipients: + eric.smith, Ricyteach |
| 2018-05-09 22:38:47 | eric.smith | set | messageid: <1525905527.56.0.682650639539.issue33452@psf.upfronthosting.co.za> |
| 2018-05-09 22:38:47 | eric.smith | link | issue33452 messages |
| 2018-05-09 22:38:47 | eric.smith | create | |