From: Mark Wooding Date: Mon, 24 Feb 2014 17:39:38 +0000 (+0000) Subject: codec.pyx: New flag from upstream. X-Git-Tag: 1.0.5~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib-python/commitdiff_plain/2fa7b5dbd2e7b53d4f91cd9136263658933f56f0 codec.pyx: New flag from upstream. --- diff --git a/codec.pyx b/codec.pyx index 815e6b2..1b395af 100644 --- a/codec.pyx +++ b/codec.pyx @@ -50,6 +50,7 @@ cdef extern from 'mLib/codec.h': CDCF_IGNEQMID CDCF_IGNZPAD CDCF_IGNNEWL + CDCF_IGNSPC CDCF_IGNINVCH CDCF_IGNJUNK @@ -69,6 +70,7 @@ class CDCF: IGNEQMID = CDCF_IGNEQMID IGNZPAD = CDCF_IGNZPAD IGNNEWL = CDCF_IGNNEWL + IGNSPC = CDCF_IGNSPC IGNINVCH = CDCF_IGNINVCH IGNJUNK = CDCF_IGNJUNK