summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-03-20 16:16:44 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-03-20 16:16:44 (GMT)
commitd47667c32b85e3b1bc91113033fcab8ea06cc911 (patch)
tree71b6ce0c9b0962b69d49be2623d9807ae30ba036
parent98e7b7644bfa3ecc7919b1a139da299da081f34e (diff)
downloadcpython-d47667c32b85e3b1bc91113033fcab8ea06cc911.zip
cpython-d47667c32b85e3b1bc91113033fcab8ea06cc911.tar.gz
cpython-d47667c32b85e3b1bc91113033fcab8ea06cc911.tar.bz2
document exitfunc fixer
-rw-r--r--Doc/library/2to3.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index 6f675b0..0fcd493 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -148,6 +148,11 @@ and off individually. They are described here in more detail.
Removes usage of :func:`execfile`. The argument to :func:`execfile` is
wrapped in calls to :func:`open`, :func:`compile`, and :func:`exec`.
+.. 2to3fixer:: exitfunc
+
+ Changes assignment of :attr:`sys.exitfunc` to use of the :mod:`atexit`
+ module.
+
.. 2to3fixer:: filter
Wraps :func:`filter` usage in a :class:`list` call.