1 | initial version |
Wouldn't the search_* commands be what you need ? An example :
sage: search_src("Berlekamp-Zassenhaus")
rings/polynomial/polynomial_element.pyx:2656: ## NTL uses the Berlekamp-Zassenhaus method with van Hoeij's improvements.
I have to admit this is not very user-friendly either, sometimes... But it can be helpful ! seach_doc searches through the doc, search_def through the methods' names, and search_src through the sources.
Nathann