2021-01-24 22:49:28 -05:00
|
|
|
:mod:`errno` -- system error codes
|
2017-07-02 17:55:09 -04:00
|
|
|
===================================
|
|
|
|
|
2021-01-24 22:49:28 -05:00
|
|
|
.. module:: errno
|
2017-07-02 17:55:09 -04:00
|
|
|
:synopsis: system error codes
|
|
|
|
|
2018-02-20 20:34:59 -05:00
|
|
|
|see_cpython_module| :mod:`cpython:errno`.
|
2017-07-02 17:55:09 -04:00
|
|
|
|
|
|
|
This module provides access to symbolic error codes for `OSError` exception.
|
|
|
|
|
|
|
|
Constants
|
|
|
|
---------
|
|
|
|
|
|
|
|
.. data:: EEXIST, EAGAIN, etc.
|
|
|
|
|
|
|
|
Error codes, based on ANSI C/POSIX standard. All error codes start with
|
2018-02-20 20:34:59 -05:00
|
|
|
"E". Errors are usually accessible as ``exc.args[0]``
|
|
|
|
where ``exc`` is an instance of `OSError`. Usage example::
|
2017-07-02 17:55:09 -04:00
|
|
|
|
|
|
|
try:
|
2018-02-20 20:34:59 -05:00
|
|
|
os.mkdir("my_dir")
|
2017-07-02 17:55:09 -04:00
|
|
|
except OSError as exc:
|
2021-01-24 22:49:28 -05:00
|
|
|
if exc.args[0] == errno.EEXIST:
|
2017-07-02 17:55:09 -04:00
|
|
|
print("Directory already exists")
|
|
|
|
|
|
|
|
.. data:: errorcode
|
|
|
|
|
|
|
|
Dictionary mapping numeric error codes to strings with symbolic error
|
|
|
|
code (see above)::
|
|
|
|
|
2021-01-24 22:49:28 -05:00
|
|
|
>>> print(errno.errorcode[uerrno.EEXIST])
|
2017-07-02 17:55:09 -04:00
|
|
|
EEXIST
|