2007-08-15 11:28:22 -03:00
|
|
|
.. _development:
|
|
|
|
|
|
|
|
*****************
|
|
|
|
Development Tools
|
|
|
|
*****************
|
|
|
|
|
|
|
|
The modules described in this chapter help you write software. For example, the
|
|
|
|
:mod:`pydoc` module takes a module and generates documentation based on the
|
|
|
|
module's contents. The :mod:`doctest` and :mod:`unittest` modules contains
|
|
|
|
frameworks for writing unit tests that automatically exercise code and verify
|
2023-05-23 14:40:02 -03:00
|
|
|
that the expected output is produced.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
The list of modules described in this chapter is:
|
|
|
|
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
|
2015-05-23 18:26:05 -03:00
|
|
|
typing.rst
|
2007-08-15 11:28:22 -03:00
|
|
|
pydoc.rst
|
2020-01-24 05:22:18 -04:00
|
|
|
devmode.rst
|
2007-08-15 11:28:22 -03:00
|
|
|
doctest.rst
|
|
|
|
unittest.rst
|
2012-03-25 19:12:55 -03:00
|
|
|
unittest.mock.rst
|
|
|
|
unittest.mock-examples.rst
|
2007-08-15 11:28:22 -03:00
|
|
|
test.rst
|