Lines Matching refs:close
78 # Note to self: don't move the close()! Asynchronous servers shouldn't
79 # call close() from finish_response(), so if you close() anywhere but
92 self.close()
118 """Send any iterable data, then close self and the iterable
123 'self.close()' once the response is finished.
131 self.close()
252 def close(self):
253 """Close the iterable (if needed) and reset all instance vars
258 if hasattr(self.result,'close'):
259 self.result.close()