• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.. _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
11that the expected output is produced.  :program:`2to3` can translate Python 2.x
12source code into valid Python 3.x code.
13
14The list of modules described in this chapter is:
15
16
17.. toctree::
18
19   typing.rst
20   pydoc.rst
21   doctest.rst
22   unittest.rst
23   unittest.mock.rst
24   unittest.mock-examples.rst
25   2to3.rst
26   test.rst
27
28See also the Python development mode: the :option:`-X` ``dev`` option and
29:envvar:`PYTHONDEVMODE` environment variable.
30