Lines Matching refs:exc_info
73 * That the exc_info argument to start_response is a tuple or None.
166 exc_info = args[2]
168 exc_info = None
173 check_exc_info(exc_info)
430 def check_exc_info(exc_info):
431 assert_(exc_info is None or type(exc_info) is tuple,
432 "exc_info (%r) is not a tuple: %r" % (exc_info, type(exc_info)))
433 # More exc_info checks?