(o)
| 36 | ''' |
| 37 | |
| 38 | def oar(o): |
| 39 | for at in dir(o): |
| 40 | if not at.startswith('__') and not at.endswith('__'): |
| 41 | print at, |
| 42 | |
| 43 | ''' |
| 44 | # regular (meaning non-dunder) object attributes of a dict: |
nothing calls this directly
no test coverage detected