chiark / gitweb /
bytestring.c: Implement indexing, slicing, concatenation and repeating.
[mLib-python] / catacomb-python.h
index bbb5fac76e41388fc10a81e7010427cae8a05822..364a3c9ad8c159239b9cb9991c66ba6d012084a4 100644 (file)
 } while (0)
 #define VALERR(str) EXCERR(PyExc_ValueError, str)
 #define TYERR(str) EXCERR(PyExc_TypeError, str)
+#define IXERR(str) EXCERR(PyExc_IndexError, str)
 #define ZDIVERR(str) EXCERR(PyExc_ZeroDivisionError, str)
 #define SYSERR(str) EXCERR(PyExc_SystemError, str)
 #define NIERR(str) EXCERR(PyExc_NotImplementedError, str)