From 548de3739c8da4ba4fb2f63453c9d60d306d71f1 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Sat, 29 Jan 2011 23:23:56 +0900 Subject: [PATCH] python: Disable gc while deserializing. --- python/msgpack/_msgpack.pyx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/python/msgpack/_msgpack.pyx b/python/msgpack/_msgpack.pyx index 9a6c232c..e367444c 100644 --- a/python/msgpack/_msgpack.pyx +++ b/python/msgpack/_msgpack.pyx @@ -9,6 +9,9 @@ cdef extern from "Python.h": from libc.stdlib cimport * from libc.string cimport * +import gc +_gc_disable = gc.disable +_gc_enable = gc.enable cdef extern from "pack.h": struct msgpack_packer: @@ -187,7 +190,9 @@ def unpackb(object packed, object object_hook=None, object list_hook=None, bint if not PyCallable_Check(list_hook): raise TypeError("list_hook must be a callable.") ctx.user.list_hook = list_hook + _gc_disable() ret = template_execute(&ctx, buf, buf_len, &off) + _gc_enable() if ret == 1: return template_data(&ctx) else: @@ -326,7 +331,9 @@ cdef class Unpacker(object): """unpack one object""" cdef int ret while 1: + _gc_disable() ret = template_execute(&self.ctx, self.buf, self.buf_tail, &self.buf_head) + _gc_enable() if ret == 1: o = template_data(&self.ctx) template_init(&self.ctx)