mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
Merge pull request #204 from litghost/fix_imports
Make imports absolute instead of relative.
This commit is contained in:
commit
970d443911
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ cdef extern from "capnp/helpers/checkCompiler.h":
|
|||
pass
|
||||
|
||||
from libcpp cimport bool
|
||||
from schema_cpp cimport Node, Data, StructNode, EnumNode, InterfaceNode, MessageBuilder, MessageReader, ReaderOptions
|
||||
from capnp.includes.schema_cpp cimport Node, Data, StructNode, EnumNode, InterfaceNode, MessageBuilder, MessageReader, ReaderOptions
|
||||
from capnp.helpers.non_circular cimport PythonInterfaceDynamicImpl, reraise_kj_exception, PyRefCounter, PyEventPort, ErrorHandler
|
||||
from capnp.includes.types cimport *
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# distutils: language = c++
|
||||
|
||||
from libc.stdint cimport *
|
||||
from capnp_cpp cimport DynamicOrphan
|
||||
from capnp.includes.capnp_cpp cimport DynamicOrphan
|
||||
from capnp.helpers.non_circular cimport reraise_kj_exception
|
||||
|
||||
from capnp.includes.types cimport *
|
||||
|
|
Loading…
Add table
Reference in a new issue