(obj, attr_name)
| 703 | |
| 704 | |
| 705 | def has_extra_attr(obj, attr_name): |
| 706 | if id(obj) not in _extra_attrs_by_object: |
| 707 | return False |
| 708 | return attr_name in _extra_attrs_by_object[id(obj)] |
| 709 | |
| 710 | |
| 711 | def set_obj_attrs( |
no outgoing calls
no test coverage detected