(obj, dotted_path)
| 329 | # Tools used for pickling. |
| 330 | |
| 331 | def _getattribute(obj, dotted_path): |
| 332 | for subpath in dotted_path: |
| 333 | obj = getattr(obj, subpath) |
| 334 | return obj |
| 335 | |
| 336 | def whichmodule(obj, name): |
| 337 | """Find the module an object belong to.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…