| ============================================== |
| |
| .. module:: errno |
| :synopsis: Standard errno system symbols. |
| |
| |
| This module makes available standard ``errno`` system symbols. The value of each |
| symbol is the corresponding integer value. The names and descriptions are |
t | borrowed from :file:`linux/include/errno.h`, which should be pretty all- |
t | borrowed from :file:`linux/include/errno.h`, which should be pretty |
| inclusive. |
| all-inclusive. |
| |
| |
| .. data:: errorcode |
| |
| Dictionary providing a mapping from the errno value to the string name in the |
| underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps to |
| ``'EPERM'``. |
| |