We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54eab9 commit 006e378Copy full SHA for 006e378
include/pybind11/pytypes.h
@@ -980,6 +980,9 @@ class bytes : public object {
980
return std::string(buffer, (size_t) length);
981
}
982
};
983
+// Note: breathe >= 4.17.0 will fail to build docs if the below two constructors
984
+// are included in the doxygen group; close here and reopen after as a workaround
985
+/// @} pytypes
986
987
inline bytes::bytes(const pybind11::str &s) {
988
object temp = s;
@@ -1009,6 +1012,8 @@ inline str::str(const bytes& b) {
1009
1012
m_ptr = obj.release().ptr();
1010
1013
1011
1014
1015
+/// \addtogroup pytypes
1016
+/// @{
1017
class none : public object {
1018
public:
1019
PYBIND11_OBJECT(none, object, detail::PyNone_Check)
0 commit comments