(self, proto)
| 4288 | """Calling base class method should succeed""" |
| 4289 | _proto = None |
| 4290 | def __reduce_ex__(self, proto): |
| 4291 | self._proto = proto |
| 4292 | return object.__reduce_ex__(self, proto) |
| 4293 | |
| 4294 | class REX_five(object): |
| 4295 | """This one used to fail with infinite recursion""" |
nothing calls this directly
no test coverage detected