diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-01 17:49:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-01 17:49:01 (GMT) |
commit | b51b5c4be7342d3c825631117509b0a3db8abee8 (patch) | |
tree | e5d955186ab77afd33fcf165f7a3dbb917e3433a /Doc | |
parent | 8bb9cde6c040fd1026b5f05d1ebdba19a8b149a8 (diff) | |
download | cpython-b51b5c4be7342d3c825631117509b0a3db8abee8.zip cpython-b51b5c4be7342d3c825631117509b0a3db8abee8.tar.gz cpython-b51b5c4be7342d3c825631117509b0a3db8abee8.tar.bz2 |
Merged revisions 82420 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82420 | benjamin.peterson | 2010-07-01 12:45:52 -0500 (Thu, 01 Jul 2010) | 1 line
fix fixer name
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/2to3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index a0a4610..f3be8fa 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -276,7 +276,7 @@ and off individually. They are described here in more detail. Converts the :keyword:`print` statement to the :func:`print` function. -.. 2to3fixer:: raises +.. 2to3fixer:: raise Converts ``raise E, V`` to ``raise E(V)``, and ``raise E, V, T`` to ``raise E(V).with_traceback(T)``. If ``E`` is a tuple, the translation will be |