Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _development: |
| 2 | |
| 3 | ***************** |
| 4 | Development Tools |
| 5 | ***************** |
| 6 | |
| 7 | The 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 |
| 9 | module's contents. The :mod:`doctest` and :mod:`unittest` modules contains |
| 10 | frameworks for writing unit tests that automatically exercise code and verify |
Benjamin Peterson | d631371 | 2008-07-31 16:23:04 +0000 | [diff] [blame] | 11 | that the expected output is produced. :program:`2to3` can translate Python 2.x |
| 12 | source code into valid Python 3.x code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 | |
| 14 | The list of modules described in this chapter is: |
| 15 | |
| 16 | |
| 17 | .. toctree:: |
| 18 | |
| 19 | pydoc.rst |
| 20 | doctest.rst |
| 21 | unittest.rst |
Michael Foord | 944e02d | 2012-03-25 23:12:55 +0100 | [diff] [blame] | 22 | unittest.mock.rst |
Michael Foord | 944e02d | 2012-03-25 23:12:55 +0100 | [diff] [blame] | 23 | unittest.mock-examples.rst |
Benjamin Peterson | d631371 | 2008-07-31 16:23:04 +0000 | [diff] [blame] | 24 | 2to3.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | test.rst |