mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
Remove unnecessary semicolon.
This commit is contained in:
parent
8312e986bf
commit
d72bd0c5d4
1 changed files with 2 additions and 2 deletions
|
|
@ -298,8 +298,8 @@ cdef class Unpacker(object):
|
|||
self.buf = NULL
|
||||
|
||||
def __dealloc__(self):
|
||||
free(self.buf);
|
||||
self.buf = NULL;
|
||||
free(self.buf)
|
||||
self.buf = NULL
|
||||
|
||||
def __init__(self, file_like=None, Py_ssize_t read_size=1024*1024, bint use_list=0,
|
||||
object object_hook=None, object list_hook=None,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue