Home
last modified time | relevance | path

Searched refs:excval (Results 1 – 17 of 17) sorted by relevance

/dports/devel/eric6/eric6-21.11/eric/eric6/DebugClients/Python/
H A DDebugBase.py922 if excval is None:
923 excval = ''
930 excvaltxt = str(excval)
1062 if excval is None:
1065 elif isinstance(excval, str):
1067 message = excval
1070 message = excval.decode()
1071 elif isinstance(excval, int):
1072 exitcode = excval
1075 code = excval.code
[all …]
H A DDebugClientBase.py289 exctype, excval, exctb = sys.exc_info()
291 message = str(excval)
292 filename = excval.filename
293 lineno = excval.lineno
294 charno = excval.offset
1333 def __unhandled_exception(self, exctype, excval, exctb): argument
1341 self.mainThread.user_exception((exctype, excval, exctb), True)
/dports/devel/eric6/eric6-21.11/eric/eric6/E5Network/
H A DE5JsonClient.py142 exctype, excval, exctb = sys.exc_info()
150 "ExceptionValue": str(excval),
191 exctype, excval, exctb = sys.exc_info()
199 "ExceptionValue": str(excval),
/dports/devel/eric6/eric6-21.11/eric/eric6/Utilities/
H A DBackgroundClient.py204 exctype, excval, exctb = sys.exc_info()
211 'EXCEPTION', '?', [str(exctype), str(excval), tbinfo])
/dports/x11-toolkits/open-motif/motif-2.3.8/tools/wml/
H A Dwmlsynbld.c748 long excval; /* EXCLUDE value */ local
777 excval = (long) val;
778 switch ( excval )
788 excval);
/dports/devel/py-numba/numba-0.51.2/numba/cuda/
H A Dcompiler.py637 excval = ctypes.c_int()
655 driver.device_to_host(ctypes.addressof(excval), excmem, excsz)
656 if excval.value != 0:
668 code = excval.value
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A D_xxsubinterpretersmodule.c1862 PyObject *excval = NULL; in _run_script() local
1898 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1900 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1902 Py_XDECREF(excval); in _run_script()
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A D_xxsubinterpretersmodule.c1862 PyObject *excval = NULL; in _run_script() local
1898 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1900 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1902 Py_XDECREF(excval); in _run_script()
/dports/lang/python-tools/Python-3.8.12/Modules/
H A D_xxsubinterpretersmodule.c1862 PyObject *excval = NULL; in _run_script() local
1898 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1900 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1902 Py_XDECREF(excval); in _run_script()
/dports/lang/python38/Python-3.8.12/Modules/
H A D_xxsubinterpretersmodule.c1862 PyObject *excval = NULL; in _run_script() local
1898 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1900 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1902 Py_XDECREF(excval); in _run_script()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A D_xxsubinterpretersmodule.c1862 PyObject *excval = NULL; in _run_script() local
1898 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1900 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1902 Py_XDECREF(excval); in _run_script()
/dports/lang/python39/Python-3.9.9/Modules/
H A D_xxsubinterpretersmodule.c1875 PyObject *excval = NULL; in _run_script() local
1911 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1913 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1915 Py_XDECREF(excval); in _run_script()
/dports/lang/python310/Python-3.10.1/Modules/
H A D_xxsubinterpretersmodule.c1867 PyObject *excval = NULL; in _run_script() local
1903 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1905 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1907 Py_XDECREF(excval); in _run_script()
/dports/lang/python311/Python-3.11.0a3/Modules/
H A D_xxsubinterpretersmodule.c1871 PyObject *excval = NULL; in _run_script() local
1907 PyErr_Fetch(&exctype, &excval, &tb); in _run_script()
1909 _sharedexception *sharedexc = _sharedexception_bind(exctype, excval, tb); in _run_script()
1911 Py_XDECREF(excval); in _run_script()
/dports/devel/py-numba/numba-0.51.2/numba/core/
H A Dpythonapi.py317 def err_set_object(self, exctype, excval): argument
322 return self.builder.call(fn, (exctype, excval))
/dports/textproc/py-regex/regex-2020.7.14/regex_2/
H A Dtest_regex.py2435 excval = None
2440 pattern, string, groups, expected, excval = t
2453 if excval is not None:
2454 self.assertRaisesRegex(expected, excval, regex.search,
/dports/textproc/py-regex/regex-2020.7.14/regex_3/
H A Dtest_regex.py2463 excval = None
2468 pattern, string, groups, expected, excval = t
2481 if excval is not None:
2484 self.assertRaisesRegex(expected, excval, regex.search,