HomeSort by relevance Sort by last modified time
    Searched refs:exc_info (Results 51 - 75 of 632) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/python/cpython3/Lib/test/
test_traceback.py 190 self.exc_info = sys.exc_info()
191 # self.exc_info[1] (traceback) contains frames:
197 traceback.print_exception(*self.exc_info)
228 type_, value, tb = sys.exc_info()
429 exc_type, exc_value, exc_tb = sys.exc_info()
695 exc_type, exc_value, tb = sys.exc_info()
722 exc_type, exc_value, tb = sys.exc_info()
765 type_, value, tb = sys.exc_info()
833 _, _, tb = sys.exc_info()
    [all...]
test_exceptions.py 188 exc, err, tb = sys.exc_info()
200 exc, err, tb = sys.exc_info()
398 tb = sys.exc_info()[2]
433 tb = sys.exc_info()[2]
650 yield sys.exc_info()[0]
651 yield sys.exc_info()[0]
652 yield sys.exc_info()[0]
655 self.assertEqual(sys.exc_info()[0], None)
657 self.assertEqual(sys.exc_info()[0], None)
666 self.assertEqual(sys.exc_info()[0], TypeError
    [all...]
test_generators.py 139 self.assertEqual(sys.exc_info()[0], None)
143 self.assertEqual(sys.exc_info()[0], ValueError)
148 self.assertEqual(sys.exc_info()[0], ValueError)
170 self.assertEqual(sys.exc_info(), (None, None, None))
174 self.assertEqual(sys.exc_info()[0], ValueError)
182 self.assertEqual(sys.exc_info(), (None, None, None))
187 self.assertEqual(sys.exc_info()[0], None)
193 self.assertEqual(sys.exc_info()[0], TypeError)
196 self.assertEqual(sys.exc_info()[0], ValueError)
198 self.assertIsNone(sys.exc_info()[0]
    [all...]
inspect_fodder.py 45 self.ex = sys.exc_info()
profilee.py 82 sys.exc_info() # 0
  /external/python/cpython3/Lib/wsgiref/
validate.py 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)
432 def check_exc_info(exc_info):
433 assert_(exc_info is None or type(exc_info) is tuple,
434 "exc_info (%r) is not a tuple: %r" % (exc_info, type(exc_info)))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/wsgiref/
validate.py 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)))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/wsgiref/
validate.py 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)))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 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)))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 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)))
    [all...]
  /external/autotest/site_utils/lxc/
base_image.py 99 exc_info = sys.exc_info()
108 raise exc_info[0], exc_info[1], exc_info[2]
  /external/tensorflow/tensorflow/python/training/
coordinator.py 149 # Python exc_info to report.
150 # If not None, it should hold the returned value of sys.exc_info(), which is
172 ex: None, an `Exception`, or a Python `exc_info` tuple as returned by
173 `sys.exc_info()`.
197 ex: Optional `Exception`, or Python `exc_info` tuple as returned by
198 `sys.exc_info()`. If this is the first call to `request_stop()` the
213 six.reraise(*sys.exc_info())
219 exc_info=ex)
225 self._exc_info_to_raise = sys.exc_info()
235 "ex must be a tuple or sys.exc_info must return the current
    [all...]
  /external/autotest/server/cros/network/rf_switch/
scpi_ssh_tunnel.py 82 raise scpi.ScpiException(cause=e), None, sys.exc_info()[2]
91 raise scpi.ScpiException(cause=e), None, sys.exc_info()[2]
  /external/autotest/server/site_tests/provision_AutoUpdate/
provision_AutoUpdate.py 108 raise error.TestFail, str(e), sys.exc_info()[2]
130 raise error.TestFail, str(e), sys.exc_info()[2]
  /external/python/cpython3/Lib/logging/
__init__.py 164 return sys.exc_info()[2].tb_frame.f_back
252 msg, args, exc_info, func=None, sinfo=None, **kwargs):
290 self.exc_info = exc_info
579 if record.exc_info:
583 record.exc_text = self.formatException(record.exc_info)
913 t, v, tb = sys.exc_info()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 69 tb = sys.exc_info()[2]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
profilee.py 82 sys.exc_info() # 0
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 69 tb = sys.exc_info()[2]
  /external/autotest/server/cros/
cfm_jmidata_log_collector.py 65 exc_info = True)
  /external/python/cpython2/Lib/plat-os2emx/
_emx_link.py 79 print 'emx_link: %s' % str(sys.exc_info()[1])
  /external/python/cpython2/Lib/test/
inspect_fodder.py 45 self.ex = sys.exc_info()
profilee.py 82 sys.exc_info() # 0
  /external/python/cpython2/Lib/
types.py 69 tb = sys.exc_info()[2]
  /external/python/cpython3/Lib/
contextlib.py 125 if sys.exc_info()[1] is not value:
184 def __exit__(self, *exc_info):
343 frame_exc = sys.exc_info()[1]
370 new_exc_details = sys.exc_info()
  /external/tensorflow/tensorflow/contrib/py2tf/pyct/
transformer.py 69 sys.exc_info()[2])

Completed in 1276 milliseconds

1 23 4 5 6 7 8 91011>>