Message316340
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. |
|
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 | |
|