MCPcopy Index your code
hub / github.com/python/cpython / _flush

Method _flush

Lib/wsgiref/handlers.py:421–427  ·  view source on GitHub ↗

Override in subclass to force sending of recent '_write()' calls It's okay if this method is a no-op (i.e., if '_write()' actually sends the data.

(self)

Source from the content-addressed store, hash-verified

419 raise NotImplementedError
420
421 def _flush(self):
422 """Override in subclass to force sending of recent '_write()' calls
423
424 It's okay if this method is a no-op (i.e., if '_write()' actually
425 sends the data.
426 """
427 raise NotImplementedError
428
429 def get_stdin(self):
430 """Override in subclass to return suitable 'wsgi.input'"""

Callers 1

writeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected