Home | History | Annotate | Download | only in wsgiref

Lines Matching refs:exc_info

73 * That the exc_info argument to start_response is a tuple or None.
161 exc_info = args[2]
163 exc_info = None
168 check_exc_info(exc_info)
421 def check_exc_info(exc_info):
422 assert_(exc_info is None or type(exc_info) is type(()),
423 "exc_info (%r) is not a tuple: %r" % (exc_info, type(exc_info)))
424 # More exc_info checks?