(self)
| 131 | # but it's now a container. In v13 we have to make it act like |
| 132 | # an iterator again. |
| 133 | def next(self): |
| 134 | if not hasattr(self, "__iterating"): |
| 135 | self.__iterating = iter(self) |
| 136 | return next(self.__iterating) |
| 137 | setattr(fdb.impl.FDBRange, "next", next) |
| 138 | |
| 139 | globals()['_version'] = ver |
no outgoing calls
no test coverage detected