Home
last modified time | relevance | path

Searched refs:_strerror (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/
Dasyncore.py68 def _strerror(err): function
425 raise OSError(err, _strerror(err))
/external/python/cpython2/Lib/
Dasyncore.py68 def _strerror(err): function
454 raise socket.error(err, _strerror(err))
/external/libiio/src/bindings/python/
Diio.py19 from os import strerror as _strerror unknown
33 raise OSError(err, _strerror(err))
39 raise OSError(-result, _strerror(-result))
/external/python/cpython2/Lib/test/
Dtest_asyncore.py329 err = asyncore._strerror(errno.EPERM)
332 err = asyncore._strerror(-1)
/external/python/cpython3/Lib/test/
Dtest_asyncore.py304 err = asyncore._strerror(errno.EPERM)
307 err = asyncore._strerror(-1)
/external/python/cpython2/Misc/NEWS.d/
D2.7b2.rst118 asyncore ``_strerror()`` function might throw ValueError.
/external/python/cpython3/Misc/
DHISTORY13436 - Issue #8573: asyncore _strerror() function might throw ValueError.