$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Martin Blais (blais_at_[hidden])
Date: 2001-08-31 15:35:16
hello gang
Any idea why boost::python::list::size() is not const?
Its implementation just does:
std::size_t list::size()
{
return PyList_Size(get());
}
and get() is const in class object.
bug?