blob: d2b5fa2aa4f5f827f17da4fb89364f07c83aea87 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _development:
2
3*****************
4Development Tools
5*****************
6
7The modules described in this chapter help you write software. For example, the
8:mod:`pydoc` module takes a module and generates documentation based on the
9module's contents. The :mod:`doctest` and :mod:`unittest` modules contains
10frameworks for writing unit tests that automatically exercise code and verify
Benjamin Petersond6313712008-07-31 16:23:04 +000011that the expected output is produced. :program:`2to3` can translate Python 2.x
12source code into valid Python 3.x code.
Georg Brandl116aa622007-08-15 14:28:22 +000013
14The list of modules described in this chapter is:
15
16
17.. toctree::
18
Berker Peksag1a90b172015-05-24 00:26:05 +030019 typing.rst
Georg Brandl116aa622007-08-15 14:28:22 +000020 pydoc.rst
21 doctest.rst
22 unittest.rst
Michael Foord944e02d2012-03-25 23:12:55 +010023 unittest.mock.rst
Michael Foord944e02d2012-03-25 23:12:55 +010024 unittest.mock-examples.rst
Benjamin Petersond6313712008-07-31 16:23:04 +000025 2to3.rst
Georg Brandl116aa622007-08-15 14:28:22 +000026 test.rst