William Marié wrote: > Hi, > > I'm looking for a function in boost python ( C++ side ) to do the equivalent > of del dict[key] but i can't find it . > Thank you very much > I think you want: boost::python::object obj; obj["where"].del(); -t