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

Class WriteWrapper

Lib/wsgiref/validate.py:242–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240 assert_(0, "errors.close() must not be called")
241
242class WriteWrapper:
243
244 def __init__(self, wsgi_writer):
245 self.writer = wsgi_writer
246
247 def __call__(self, s):
248 assert_(type(s) is bytes)
249 self.writer(s)
250
251class PartialIteratorWrapper:
252

Callers 1

start_response_wrapperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…