diff options
| author | Marty B <mrbm74@gmail.com> | 2019-09-18 18:15:09 +0200 |
|---|---|---|
| committer | Inada Naoki <songofacandy@gmail.com> | 2019-09-19 01:15:09 +0900 |
| commit | b98b8cab99d7b2dbfe2b2211974564b7e22e9412 (patch) | |
| tree | cd19c180083db4b2b826db69f7471a1a7bc69753 | |
| parent | 05ff11dbcc8181cc781b121e46e76a01258a32af (diff) | |
| download | msgpack-python-b98b8cab99d7b2dbfe2b2211974564b7e22e9412.tar.gz | |
Avoid calling __Pyx_GetModuleGlobalName for ExtType (#363)
| -rw-r--r-- | msgpack/_packer.pyx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/msgpack/_packer.pyx b/msgpack/_packer.pyx index dcee213..e275ef2 100644 --- a/msgpack/_packer.pyx +++ b/msgpack/_packer.pyx @@ -3,6 +3,8 @@ from cpython cimport * from cpython.bytearray cimport PyByteArray_Check, PyByteArray_CheckExact +cdef ExtType + from . import ExtType |
