id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 7711,python and unique_ptr,maxim.yegorushkin@…,Ralf W. Grosse-Kunstleve,"boost::python supports holding objects by std::auto_ptr<> but not by std::unique_ptr<>. Would be great if boost::python were updated to support std::unique_ptr<> as well. Here is a sample: {{{ #!c++ #include #include struct Foo {}; BOOST_PYTHON_MODULE(foo) { // This compiles fine. boost::python::class_< Foo , std::auto_ptr , boost::noncopyable >(""Foo1"", boost::python::no_init) ; // This doesn't compile. boost::python::class_< Foo , std::unique_ptr , boost::noncopyable >(""Foo2"", boost::python::no_init) ; } }}}",Feature Requests,closed,To Be Determined,python USE GITHUB,Boost 1.51.0,Problem,duplicate,"python,unique_ptr",