This is an index of all guest articles published by LWN.net, organized by author name.| lwn.net
May 12, 2020| lwn.net
Source code: Lib/doctest.py 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. Th...| Python documentation
This post continues a series on the testing package I started a few weeks back. You can read the previous article on writing table driven tests here. You can find the code mentioned below in the https://github.com/davecheney/fib repository.| Dave Cheney