mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-23 13:45:10 +00:00
Annotated[Any, CppTypePybind11("cpp_namespace::UserType")]
based on a suggestion by @sizmailov
https://github.com/pybind/pybind11/pull/4888#issuecomment-1773618327
This commit is contained in:
parent
ea00323beb
commit
272152e68b
@ -494,7 +494,7 @@ protected:
|
|||||||
std::string tname(t->name());
|
std::string tname(t->name());
|
||||||
detail::clean_type_id(tname);
|
detail::clean_type_id(tname);
|
||||||
if (detail::cpp_name_needs_typing_annotated(tname.c_str())) {
|
if (detail::cpp_name_needs_typing_annotated(tname.c_str())) {
|
||||||
signature += "Annotated[Any, \"" + tname + "\"]";
|
signature += "Annotated[Any, CppTypePybind11(\"" + tname + "\")]";
|
||||||
} else {
|
} else {
|
||||||
signature += tname;
|
signature += tname;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user