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