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

Method __del__

Lib/wsgiref/validate.py:288–293  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

286 self.original_iterator.close()
287
288 def __del__(self):
289 if not self.closed:
290 sys.stderr.write(
291 "Iterator garbage collected without being closed")
292 assert_(self.closed,
293 "Iterator garbage collected without being closed")
294
295def check_environ(environ):
296 assert_(type(environ) is dict,

Callers

nothing calls this directly

Calls 2

assert_Function · 0.85
writeMethod · 0.45

Tested by

no test coverage detected