(self, proto)
| 145 | """Calling base class method should succeed""" |
| 146 | _proto = None |
| 147 | def __reduce_ex__(self, proto): |
| 148 | self._proto = proto |
| 149 | return object.__reduce_ex__(self, proto) |
| 150 | |
| 151 | class REX_five(object): |
| 152 | """This one used to fail with infinite recursion""" |
nothing calls this directly
no test coverage detected