Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove Comm::testany()
[simgrid.git] / src / bindings / python / simgrid_python.cpp
index 8722bf4..d59e9c5 100644 (file)
@@ -690,8 +690,6 @@ PYBIND11_MODULE(simgrid, m)
                   "Do a blocking communication between two arbitrary hosts.\n\nThis initializes a communication that "
                   "completely bypass the mailbox and actors mechanism. There is really no limit on the hosts involved. "
                   "In particular, the actor does not have to be on one of the involved hosts.")
-      .def_static("test_any", &Comm::test_any, py::call_guard<py::gil_scoped_release>(), py::arg("comms"),
-                  "take a vector s4u::CommPtr and return the rank of the first finished one (or -1 if none is done)")
       .def_static("wait_any", &Comm::wait_any, py::call_guard<py::gil_scoped_release>(), py::arg("comms"),
                   "Block until the completion of any communication in the list and return the index of the "
                   "terminated one.")