python: update docs about working around a pybind11 misbehavior.
It was specific to Python 3.7, which is already EOL'd, so not much point
in investigating further. I won't deliberately make it broken there
though, so the order will stay maintained like this as much as possible.
.def("has_attribute",&Trade::MeshData::hasAttribute,"Whether the mesh has given attribute",py::arg("name"))
.def("attribute_count",static_cast<UnsignedInt(Trade::MeshData::*)(Trade::MeshAttribute)const>(&Trade::MeshData::attributeCount),"Count of given named attribute",py::arg("name"))
/* IMPORTANT: due to yet-uninvestigated pybind11 platform-specific