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
143 (except for a failure to close the application iterator, which
223 def close(self):
224 assert_(0, "input.close() must not be called")
242 def close(self):
243 assert_(0, "errors.close() must not be called")
286 def close(self):
288 if hasattr(self.original_iterator, 'close'):
289 self.original_iterator.close()