mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-11-01 10:00:54 +00:00
use relative imports (#357)
Some applications use msgpack to store persistent data and require a specific msgpack version (e.g. borgbackup). Bundling helps in case there is an (incompatible) version of msgpack in a system-wide install.
This commit is contained in:
parent
737f08a885
commit
05ff11dbcc
4 changed files with 10 additions and 10 deletions
|
|
@ -12,14 +12,14 @@ from libc.string cimport *
|
|||
from libc.limits cimport *
|
||||
ctypedef unsigned long long uint64_t
|
||||
|
||||
from msgpack.exceptions import (
|
||||
from .exceptions import (
|
||||
BufferFull,
|
||||
OutOfData,
|
||||
ExtraData,
|
||||
FormatError,
|
||||
StackError,
|
||||
)
|
||||
from msgpack import ExtType
|
||||
from . import ExtType
|
||||
|
||||
|
||||
cdef extern from "unpack.h":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue