Closed
Description
Some Cython implementations use interfaces from the standard library of C++, namely std::algorithm::move
and std::algorithm::fill
from std::algorithm
.
Before Cython 3, those interfaces had to be imported directly using the verbose syntax from Cython:
Cython 3 introduced the following line natively, for those interfaces. Those interfaces should now be cimported
directly. That is one can replace the line shown above respectively with:
from libcpp.algorithm cimport move
from libcpp.algorithm cimport fill
I believe this is a good first Cython issue.
Any reader should feel free to pick it up. It might be possible that there is some context missing.
Please let me know if you need help. 🙂