diff --git a/python/dune/xt/functions/ESV2007.bindings.hh b/python/dune/xt/functions/ESV2007.bindings.hh
index f4b7ef6fc4b425fbc36796b80e220fd1b07047ae..7cff6b8db33e309b398058fbbf3674182b9bffa7 100644
--- a/python/dune/xt/functions/ESV2007.bindings.hh
+++ b/python/dune/xt/functions/ESV2007.bindings.hh
@@ -96,7 +96,7 @@ class CutoffFunction
                const ScalarFunction& diffusion_factor,
                const TensorFunction& diffusion_tensor,
                const R& poincare_constant,
-               const std::string& name) { return type(diffusion_factor, diffusion_tensor, poincare_constant, name); },
+               const std::string& name) { return new type(diffusion_factor, diffusion_tensor, poincare_constant, name); },
             "grid_provider"_a,
             "diffusion_factor"_a,
             "diffusion_tesor"_a,
diff --git a/python/dune/xt/grid/filters/element.hh b/python/dune/xt/grid/filters/element.hh
index ef302c2a8382f5fd654edbdf2f3ef127d63017fb..36b8138dab2c99e83d5fe9de9f8fb359206ea00f 100644
--- a/python/dune/xt/grid/filters/element.hh
+++ b/python/dune/xt/grid/filters/element.hh
@@ -47,7 +47,7 @@ public:
     c.def(py::init([](){return std::make_unique<type>();}));
     c.def("__repr__", [ClassId](type&){ return ClassId + "()";});
 
-    m.def(ClassId.c_str(), [](const Grid::GridProvider<G>&){return type();});
+    m.def(ClassId.c_str(), [](const Grid::GridProvider<G>&){return new type();});
 
     return c;
   } // ... bind(...)
diff --git a/python/dune/xt/grid/filters/intersection.hh b/python/dune/xt/grid/filters/intersection.hh
index fa519b4cfb57230705d716bf8ce61d4d54a86e6a..f691b5062eff9eb0d6a12e8207f1338126a305e2 100644
--- a/python/dune/xt/grid/filters/intersection.hh
+++ b/python/dune/xt/grid/filters/intersection.hh
@@ -47,7 +47,7 @@ public:
     c.def(py::init([](){return std::make_unique<type>();}));
     c.def("__repr__", [ClassId](type&) { return ClassId + "()"; });
 
-    m.def(ClassId.c_str(), [](const Grid::GridProvider<G>&) { return type(); });
+    m.def(ClassId.c_str(), [](const Grid::GridProvider<G>&) { return new type(); });
 
     return c;
   } // ... bind(...)
@@ -79,7 +79,7 @@ public:
     c.def(py::init([](const BoundaryInfo<I>& boundary_info,
                       const BoundaryType& boundary_type,
                       const std::string& logging_prefix) {
-            return type(boundary_info, boundary_type.copy(), logging_prefix);
+            return new type(boundary_info, boundary_type.copy(), logging_prefix);
           }),
           "boundary_info"_a,
           "boundary_type"_a,
@@ -91,7 +91,7 @@ public:
           [](const Grid::GridProvider<G>&,
              const BoundaryInfo<I>& boundary_info,
              const BoundaryType& boundary_type,
-             const std::string& logging_prefix) { return type(boundary_info, boundary_type.copy(), logging_prefix); },
+             const std::string& logging_prefix) { return new type(boundary_info, boundary_type.copy(), logging_prefix); },
           "grid_provider"_a,
           "boundary_info"_a,
           "boundary_type"_a,
diff --git a/python/dune/xt/grid/walker.hh b/python/dune/xt/grid/walker.hh
index 05e83ac65c9735be25a7b14df51710dd4e730ac8..78f0bc77eb65779781fe1de34cc962c12172e441 100644
--- a/python/dune/xt/grid/walker.hh
+++ b/python/dune/xt/grid/walker.hh
@@ -74,13 +74,13 @@ public:
 
     auto ClassName = Common::to_camel_case(class_id + "_" + grid_id);
     bound_type c(m, ClassName.c_str(), ClassName.c_str());
-    c.def(py::init([](GridProvider<G>& grid_provider) { return type(grid_provider.leaf_view()); }), "grid_provider"_a);
+    c.def(py::init([](GridProvider<G>& grid_provider) { return new type(grid_provider.leaf_view()); }), "grid_provider"_a);
 
     addbind_methods(c);
 
     // factories
     m.def(Common::to_camel_case(class_id).c_str(),
-          [](GridProvider<G>& grid_provider) { return type(grid_provider.leaf_view()); },
+          [](GridProvider<G>& grid_provider) { return new type(grid_provider.leaf_view()); },
           "grid_provider"_a);
 
     return c;
diff --git a/python/dune/xt/grid/walker/apply-on.bindings.hh b/python/dune/xt/grid/walker/apply-on.bindings.hh
index f36abafd86093175a9978db26b1bb9a77a6db529..0c1d4430244919d674f7b69aa1898287663f9508 100644
--- a/python/dune/xt/grid/walker/apply-on.bindings.hh
+++ b/python/dune/xt/grid/walker/apply-on.bindings.hh
@@ -59,7 +59,7 @@ private:
       c.def(pybind11::init<>());
 
 
-      m.def(makename(class_name, layer_name).c_str(), []() { return type(); });
+      m.def(makename(class_name, layer_name).c_str(), []() { return new type(); });
     }
   };
 
@@ -74,7 +74,7 @@ private:
 
       m.def(makename(class_name, layer_name).c_str(),
             [](const BoundaryInfoType& boundary_info, XT::Grid::BoundaryType*&& boundary_type) {
-              return type(boundary_info, std::move(boundary_type));
+              return new type(boundary_info, std::move(boundary_type));
             },
             "boundary_info"_a,
             "boundary_type"_a);