diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-07-16 19:41:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-07-16 19:41:43 (GMT) |
commit | d1f9942ae399c765c1bee392658fc0f56f963ec5 (patch) | |
tree | 6d566256fb6d1c9edae6257bb612e1d867e58058 /Modules/cjkcodecs/multibytecodec.h | |
parent | 85c761d3d3357615da15b332df36b307c70e2acb (diff) | |
download | cpython-d1f9942ae399c765c1bee392658fc0f56f963ec5.zip cpython-d1f9942ae399c765c1bee392658fc0f56f963ec5.tar.gz cpython-d1f9942ae399c765c1bee392658fc0f56f963ec5.tar.bz2 |
Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to
notify exceptions raised by the _PyUnicodeWriter API
Diffstat (limited to 'Modules/cjkcodecs/multibytecodec.h')
-rw-r--r-- | Modules/cjkcodecs/multibytecodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/cjkcodecs/multibytecodec.h b/Modules/cjkcodecs/multibytecodec.h index 3050aeb..7cde8e3 100644 --- a/Modules/cjkcodecs/multibytecodec.h +++ b/Modules/cjkcodecs/multibytecodec.h @@ -112,6 +112,7 @@ typedef struct { #define MBERR_TOOSMALL (-1) /* insufficient output buffer space */ #define MBERR_TOOFEW (-2) /* incomplete input buffer */ #define MBERR_INTERNAL (-3) /* internal runtime error */ +#define MBERR_EXCEPTION (-4) /* an exception has been raised */ #define ERROR_STRICT (PyObject *)(1) #define ERROR_IGNORE (PyObject *)(2) |