diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-24 02:45:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-24 02:45:37 (GMT) |
commit | 4020221838601bc89ae37ddb15e20333535dadfe (patch) | |
tree | 5e3ff6439e3f56c8f88330921421ffffe29dc24f /Doc/library/development.rst | |
parent | 8e234c6e30cf601d5460463a21aabee788bacea2 (diff) | |
download | cpython-4020221838601bc89ae37ddb15e20333535dadfe.zip cpython-4020221838601bc89ae37ddb15e20333535dadfe.tar.gz cpython-4020221838601bc89ae37ddb15e20333535dadfe.tar.bz2 |
add some documentation for 2to3
Diffstat (limited to 'Doc/library/development.rst')
-rw-r--r-- | Doc/library/development.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/development.rst b/Doc/library/development.rst index ff4cb00..8cd3d0c 100644 --- a/Doc/library/development.rst +++ b/Doc/library/development.rst @@ -9,7 +9,8 @@ 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 -that the expected output is produced. +that the expected output is produced. :program:`2to3` can translate Python 2.x +source code into valid Python 3.x code. The list of modules described in this chapter is: @@ -19,4 +20,5 @@ The list of modules described in this chapter is: pydoc.rst doctest.rst unittest.rst + 2to3.rst test.rst |