Lines Matching refs:close
86 - That .close() is not called
94 - That .close() is not called, and no other methods are provided.
107 - That .close() is called (doesn't raise exception, only prints to
138 (except for a failure to close the application iterator, which
217 def close(self):
218 assert_(0, "input.close() must not be called")
236 def close(self):
237 assert_(0, "errors.close() must not be called")
278 def close(self):
280 if hasattr(self.original_iterator, 'close'):
281 self.original_iterator.close()