return Container_attach_and_possibly_wait(self, args, kwds, 1);
}
+static PyObject *
+Container_clear_config(Container *self, PyObject *args, PyObject *kwds)
+{
+ self->container->clear_config(self->container);
+
+ Py_RETURN_NONE;
+}
+
static PyObject *
Container_clear_config_item(Container *self, PyObject *args, PyObject *kwds)
{
"\n"
"Attach to the container. Returns the exit code of the process."
},
+ {"clear_config", (PyCFunction)Container_clear_config,
+ METH_NOARGS,
+ "clear_config()\n"
+ "\n"
+ "Clear any container configuration."
+ },
{"clear_config_item", (PyCFunction)Container_clear_config_item,
METH_VARARGS|METH_KEYWORDS,
"clear_config_item(key) -> boolean\n"