catacomb-python.h: Add a macro for raising `OverflowError'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 24 Nov 2019 14:59:35 +0000 (14:59 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 27 Nov 2019 15:10:44 +0000 (15:10 +0000)
catacomb-python.h

index b1120fa..ad27461 100644 (file)
   goto end;                                                            \
 } while (0)
 #define VALERR(str) EXCERR(PyExc_ValueError, str)
+#define OVFERR(str) EXCERR(PyExc_OverflowError, str)
 #define TYERR(str) EXCERR(PyExc_TypeError, str)
 #define ZDIVERR(str) EXCERR(PyExc_ZeroDivisionError, str)
 #define SYSERR(str) EXCERR(PyExc_SystemError, str)