blob: ff4cb009853fc5c42f66b39ce2ed54f8e8e74874 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2.. _development:
3
4*****************
5Development Tools
6*****************
7
8The modules described in this chapter help you write software. For example, the
9:mod:`pydoc` module takes a module and generates documentation based on the
10module's contents. The :mod:`doctest` and :mod:`unittest` modules contains
11frameworks for writing unit tests that automatically exercise code and verify
Benjamin Peterson415ce062008-07-24 02:27:46 +000012that the expected output is produced.
Georg Brandl8ec7f652007-08-15 14:28:01 +000013
14The list of modules described in this chapter is:
15
16
17.. toctree::
18
19 pydoc.rst
20 doctest.rst
21 unittest.rst
22 test.rst