(obj)
| 21 | # anything specified at the class level. |
| 22 | |
| 23 | def _object_name(obj): |
| 24 | try: |
| 25 | return obj.__qualname__ |
| 26 | except AttributeError: |
| 27 | return type(obj).__qualname__ |
| 28 | |
| 29 | # Bootstrap-related code ###################################################### |
| 30 |
no outgoing calls
no test coverage detected