We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73ad309 commit 6d1f28fCopy full SHA for 6d1f28f
include/pybind11/pybind11.h
@@ -1517,13 +1517,6 @@ inline dict globals() {
1517
#endif
1518
}
1519
1520
-template <typename... Args, typename = detail::enable_if_t<args_are_all_keyword_or_ds<Args...>()>>
1521
-PYBIND11_DEPRECATED("make_simple_namespace should be replaced with "
1522
- "py::module_::import(\"types\").attr(\"SimpleNamespace\") ")
1523
-object make_simple_namespace(Args &&...args_) {
1524
- return module_::import("types").attr("SimpleNamespace")(std::forward<Args>(args_)...);
1525
-}
1526
-
1527
PYBIND11_NAMESPACE_BEGIN(detail)
1528
/// Generic support for creating new Python heap types
1529
class generic_type : public object {
0 commit comments