diff --git a/vnpy/api/tap/.gitignore b/vnpy/api/tap/.gitignore new file mode 100644 index 00000000..15338c00 --- /dev/null +++ b/vnpy/api/tap/.gitignore @@ -0,0 +1,3 @@ +vntap.lib + + diff --git a/vnpy/api/tap/vntap.pyd b/vnpy/api/tap/vntap.pyd index fc5f15cd..19333965 100644 Binary files a/vnpy/api/tap/vntap.pyd and b/vnpy/api/tap/vntap.pyd differ diff --git a/vnpy/api/tap/vntap/generated_files/module.cpp b/vnpy/api/tap/vntap/generated_files/module.cpp index 14f81f07..28ceb578 100644 --- a/vnpy/api/tap/vntap/generated_files/module.cpp +++ b/vnpy/api/tap/vntap/generated_files/module.cpp @@ -28,7 +28,8 @@ void init_dispatcher(pybind11::module &m) { m.def("set_async_callback_exception_handler", &autocxxpy::async_callback_exception_handler::set_handler); - pybind11::class_ c(m, "AsyncDispatchException"); + // maybe module_local is unnecessary + pybind11::class_ c(m, "AsyncDispatchException", pybind11::module_local()); c.def_property_readonly("what", &autocxxpy::async_dispatch_exception::what_mutable); c.def_readonly("instance", &autocxxpy::async_dispatch_exception::instance); c.def_readonly("function_name", &autocxxpy::async_dispatch_exception::function_name); diff --git a/vnpy/api/tap/vntap/vntap.vcxproj b/vnpy/api/tap/vntap/vntap.vcxproj index 67b3474f..5fe0bb48 100644 --- a/vnpy/api/tap/vntap/vntap.vcxproj +++ b/vnpy/api/tap/vntap/vntap.vcxproj @@ -58,14 +58,14 @@ DynamicLibrary true - v141 + v142 Unicode true DynamicLibrary false - v141 + v142 true Unicode true @@ -73,14 +73,14 @@ DynamicLibrary true - v141 + v142 Unicode true DynamicLibrary false - v141 + v142 true Unicode true diff --git a/vnpy/api/tora/.gitignore b/vnpy/api/tora/.gitignore new file mode 100644 index 00000000..d4aa1f5f --- /dev/null +++ b/vnpy/api/tora/.gitignore @@ -0,0 +1,3 @@ +vntora.lib + + diff --git a/vnpy/api/tora/vntora.pyd b/vnpy/api/tora/vntora.pyd index 0d69b1b6..f24b66be 100644 Binary files a/vnpy/api/tora/vntora.pyd and b/vnpy/api/tora/vntora.pyd differ diff --git a/vnpy/api/tora/vntora/generated_files/module.cpp b/vnpy/api/tora/vntora/generated_files/module.cpp index 01d76054..dbcf121e 100644 --- a/vnpy/api/tora/vntora/generated_files/module.cpp +++ b/vnpy/api/tora/vntora/generated_files/module.cpp @@ -27,7 +27,8 @@ void init_dispatcher(pybind11::module &m) { m.def("set_async_callback_exception_handler", &autocxxpy::async_callback_exception_handler::set_handler); - pybind11::class_ c(m, "AsyncDispatchException"); + // maybe module_local is unnecessary + pybind11::class_ c(m, "AsyncDispatchException", pybind11::module_local()); c.def_property_readonly("what", &autocxxpy::async_dispatch_exception::what_mutable); c.def_readonly("instance", &autocxxpy::async_dispatch_exception::instance); c.def_readonly("function_name", &autocxxpy::async_dispatch_exception::function_name); diff --git a/vnpy/api/xtp/.gitignore b/vnpy/api/xtp/.gitignore new file mode 100644 index 00000000..7202166f --- /dev/null +++ b/vnpy/api/xtp/.gitignore @@ -0,0 +1,2 @@ +vnxtp.lib + diff --git a/vnpy/api/xtp/vnxtp.pyd b/vnpy/api/xtp/vnxtp.pyd index daeddc00..1c6e197d 100644 Binary files a/vnpy/api/xtp/vnxtp.pyd and b/vnpy/api/xtp/vnxtp.pyd differ diff --git a/vnpy/api/xtp/vnxtp/generated_files/module.cpp b/vnpy/api/xtp/vnxtp/generated_files/module.cpp index af36e5d9..26e8e749 100644 --- a/vnpy/api/xtp/vnxtp/generated_files/module.cpp +++ b/vnpy/api/xtp/vnxtp/generated_files/module.cpp @@ -25,7 +25,8 @@ void init_dispatcher(pybind11::module &m) { m.def("set_async_callback_exception_handler", &autocxxpy::async_callback_exception_handler::set_handler); - pybind11::class_ c(m, "AsyncDispatchException"); + // maybe module_local is unnecessary + pybind11::class_ c(m, "AsyncDispatchException", pybind11::module_local()); c.def_property_readonly("what", &autocxxpy::async_dispatch_exception::what_mutable); c.def_readonly("instance", &autocxxpy::async_dispatch_exception::instance); c.def_readonly("function_name", &autocxxpy::async_dispatch_exception::function_name);