mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-23 13:45:10 +00:00
Add struct handle_type_name<...>
specializations for object
, list
, etc.
This resolves all test failures except: ``` E - create_rec_nested(arg0: int) -> numpy.ndarray[Annotated[Any, "NestedStruct"]] ... FAILED test_numpy_dtypes.py::test_signature - assert --- actual / +++ expected ```
This commit is contained in:
parent
7780fbca6c
commit
76b4a34aff
@ -874,6 +874,38 @@ struct handle_type_name {
|
|||||||
static constexpr auto name = const_name<T>();
|
static constexpr auto name = const_name<T>();
|
||||||
};
|
};
|
||||||
template <>
|
template <>
|
||||||
|
struct handle_type_name<object> {
|
||||||
|
static constexpr auto name = const_name("object");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<list> {
|
||||||
|
static constexpr auto name = const_name("list");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<dict> {
|
||||||
|
static constexpr auto name = const_name("dict");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<set> {
|
||||||
|
static constexpr auto name = const_name("set");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<frozenset> {
|
||||||
|
static constexpr auto name = const_name("frozenset");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<anyset> {
|
||||||
|
static constexpr auto name = const_name("anyset");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<str> {
|
||||||
|
static constexpr auto name = const_name("str");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
|
struct handle_type_name<tuple> {
|
||||||
|
static constexpr auto name = const_name("tuple");
|
||||||
|
};
|
||||||
|
template <>
|
||||||
struct handle_type_name<bool_> {
|
struct handle_type_name<bool_> {
|
||||||
static constexpr auto name = const_name("bool");
|
static constexpr auto name = const_name("bool");
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user