I want to obtain the module from which a Python object is from. Both
x.__module__
and
x.__class__.__module__
seem to work. Are these completely redundant? Is there any reason to prefer one over another?
|
I want to obtain the module from which a Python object is from. Both
and
seem to work. Are these completely redundant? Is there any reason to prefer one over another?
| |||
|
feedback
|
|
If
For an instance which doesn't define
I think you need to be clear what module you actually want to know about. If it is the module containing the class definition then it is best to be explicit about that, so I would use | ||||
|
feedback
|