(self)
| 152 | """This one used to fail with infinite recursion""" |
| 153 | _reduce_called = 0 |
| 154 | def __reduce__(self): |
| 155 | self._reduce_called = 1 |
| 156 | return object.__reduce__(self) |
| 157 | |
| 158 | class REX_six(object): |
| 159 | """This class is used to check the 4th argument (list iterator) of |
nothing calls this directly
no test coverage detected