> The answer to your original question "IS that individual lines of > doctests or doctest units themselves?" is clear since Jereon posted the > (very nice) code he used to compute the total: > > $ find src/sage src/doc/en -type f |xargs cat | grep -c '^ *sage: ' > 239600 > > Using ag I find:
sage: ag '^\s*sage:'| wc -l 300410 If we just want to look for testing blocks then a crude lower bound is: sage: ag '^\s*(TEST|EXAMPLE)S::' | wc -l 62882 Andrew -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post to this group, send email to sage-devel@googlegroups.com. Visit this group at http://groups.google.com/group/sage-devel. For more options, visit https://groups.google.com/d/optout.