From c5d40c1d0ebdf6fbed4b855ae073c231739608a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Mon, 8 Jul 2019 20:36:54 +0200 Subject: [PATCH] Add files --- src/debug_lldb.cpp | 7 ------- src/dispatcher.cpp | 1 + src/git.cpp | 3 --- 3 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/debug_lldb.cpp b/src/debug_lldb.cpp index 845181e..49fe600 100644 --- a/src/debug_lldb.cpp +++ b/src/debug_lldb.cpp @@ -608,13 +608,11 @@ void Debug::LLDB::init_module(pybind11::module &api) { .def("step_over", &Debug::LLDB::step_over) .def("step_into", &Debug::LLDB::step_into) .def("step_out", &Debug::LLDB::step_out) - .def("cancel", &Debug::LLDB::cancel) .def("is_invalid", &Debug::LLDB::is_invalid) .def("is_stopped", &Debug::LLDB::is_stopped) .def("is_running", &Debug::LLDB::is_running) .def("get_backtrace", &Debug::LLDB::get_backtrace) .def("get_variables", &Debug::LLDB::get_variables) - .def("cancel", &Debug::LLDB::cancel) .def("start", &Debug::LLDB::start, py::arg("command"), py::arg("path") = "", @@ -626,11 +624,6 @@ void Debug::LLDB::init_module(pybind11::module &api) { .def("select_frame", &Debug::LLDB::select_frame, py::arg("frame_index"), py::arg("thread_index_id") = 0) - .def("get_value", &Debug::LLDB::get_value, - py::arg("variable"), - py::arg("file_path"), - py::arg("line_nr"), - py::arg("line_index")) .def("get_return_value", &Debug::LLDB::get_return_value, py::arg("file_path"), py::arg("line_nr"), diff --git a/src/dispatcher.cpp b/src/dispatcher.cpp index f13dedb..5274389 100644 --- a/src/dispatcher.cpp +++ b/src/dispatcher.cpp @@ -48,3 +48,4 @@ void Dispatcher::init_module(py::module &api) { .def("post", &Dispatcher::post &>) ; +} diff --git a/src/git.cpp b/src/git.cpp index ef36ee2..631d875 100644 --- a/src/git.cpp +++ b/src/git.cpp @@ -318,9 +318,6 @@ void Git::init_module(py::module &api) { ; repository - .def_static("status_string", &Git::Repository::status_string, - py::arg("status")) - .def("get_status", &Git::Repository::get_status) .def("clear_saved_status", &Git::Repository::clear_saved_status) .def("get_work_path", &Git::Repository::get_work_path)