Lines Matching defs:close
100 def close(self):
103 self.p5p.close()
154 open(timestamp_path, "wb").close()
158 open(timestamp_path, "wb").close()
377 # and exist to ensure that we close any server-side resources used by
389 """A wrapper class to ensure we have a close() method on the iterable
404 def close(self):
406 if hasattr(self.__iterable, "close"):
407 self.__iterable.close()
409 self.__closeable.close()