Skip to content

Commit 0d5c58b

Browse files
committed
cleanup
1 parent 822cce8 commit 0d5c58b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

msgpack/unpack_template.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ static inline int unpack_execute(unpack_context* ctx, const char* data, size_t l
322322
case CS_MAP_32:
323323
/* FIXME security guard */
324324
start_container(_map, _msgpack_load32(uint32_t,n), CT_MAP_KEY);
325-
325+
326326
default:
327327
goto _failed;
328328
}

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def __init__(self, *args, **kwargs):
9292
libraries=libraries,
9393
include_dirs=['.'],
9494
define_macros=macros,
95-
extra_compile_args=['-O0'],
9695
))
9796
del libraries, macros
9897

test/test_sequnpack.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
import py
54
import six
65
from msgpack import Unpacker, BufferFull
7-
from msgpack.exceptions import OutOfData, ExtraData, UnpackValueError
6+
from msgpack.exceptions import OutOfData
87
from pytest import raises
98

109

0 commit comments

Comments
 (0)