| 909 | }; |
| 910 | |
| 911 | static void |
| 912 | add_const(PyObject *dict, const char *name, long value) |
| 913 | { |
| 914 | PyObject *v = PyInt_FromLong(value); |
| 915 | if (!v || PyDict_SetItemString(dict, name, v)) |
| 916 | PyErr_Clear(); |
| 917 | |
| 918 | Py_XDECREF(v); |
| 919 | } |
| 920 | |
| 921 | static PyObject * |
| 922 | strerror(PyObject *self, PyObject *args) |