https://docs.python.org/3/library/doctest.html
The doctest module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown.
This is useful for making sure that documentation is up-to-date and that examples still work.
It would be cool to have something like this for reprexes.
https://docs.python.org/3/library/doctest.html
This is useful for making sure that documentation is up-to-date and that examples still work.
It would be cool to have something like this for reprexes.