Home
last modified time | relevance | path

Searched refs:ConversionError (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/
Dxdrlib.py32 class ConversionError(Error): class
43 raise ConversionError(e.args[0]) from None
79 raise ConversionError(e.args[0]) from None
83 raise ConversionError(e.args[0]) from None
228 raise ConversionError('0 or 1 expected, got %r' % (x,))
/external/python/cpython2/Lib/
Dxdrlib.py35 class ConversionError(Error): class
46 raise ConversionError(e.args[0])
82 raise ConversionError(e.args[0])
86 raise ConversionError(e.args[0])
235 raise ConversionError, '0 or 1 expected, got %r' % (x,)
/external/python/cpython3/Lib/test/
Dtest_xdrlib.py59 self.assertRaises(xdrlib.ConversionError, *args)
/external/python/cpython2/Lib/test/
Dtest_xdrlib.py60 self.assertRaises(xdrlib.ConversionError, *args)
/external/tensorflow/tensorflow/python/autograph/impl/
Dapi.py87 class ConversionError(AutoGraphError): class
129 elif preferred_type in (errors.PyCTError, AutoGraphError, ConversionError,
796 raise ConversionError('converting {}: {}: {}'.format(
/external/python/cpython2/Doc/library/
Dxdrlib.rst267 .. exception:: ConversionError
277 except xdrlib.ConversionError as instance:
/external/python/cpython3/Doc/library/
Dxdrlib.rst266 .. exception:: ConversionError
276 except xdrlib.ConversionError as instance:
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
Dcommon_errors.md34 Newer versions of AutoGraph raise a `ConversionError`. Older versions print a
/external/python/cpython2/Misc/NEWS.d/
D2.7.9rc1.rst296 Raise ConversionError in xdrlib as documented. Patch by Filip Gruszczyński
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst1845 Raise ConversionError in xdrlib as documented. Patch by Filip Gruszczyński
/external/python/cpython3/Misc/
DHISTORY1200 - Issue #11694: Raise ConversionError in xdrlib as documented. Patch