(self, c1)
| 3716 | return c1 |
| 3717 | |
| 3718 | def _assert_not_orphan(self, c1): |
| 3719 | mapper = object_mapper(c1) |
| 3720 | state = instance_state(c1) |
| 3721 | assert not mapper._is_orphan(state) |
| 3722 | |
| 3723 | def _assert_is_orphan(self, c1): |
| 3724 | mapper = object_mapper(c1) |
no test coverage detected