summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-20 07:20:12 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-20 07:20:12 (GMT)
commit5a42ca6c04d2db1f3040ae43f37a4f350251c25c (patch)
treee218178cc7f4c3a60eb311cb3101dee839ec2169 /Doc/glossary.rst
parent6634bf2919d855ccd821e878b8cc00c7209f1cbe (diff)
downloadcpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.zip
cpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.tar.gz
cpython-5a42ca6c04d2db1f3040ae43f37a4f350251c25c.tar.bz2
Add notes that tkinter modules will be renamed.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 8ce622d..0da14d8 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -16,6 +16,14 @@ Glossary
The typical Python prompt of the interactive shell when entering code for
an indented code block.
+ 2to3
+ A tool that tries to convert Python 2.x code to Python 3.x code by
+ handling most of the incompatibilites that can be detected by parsing the
+ source and traversing the parse tree.
+
+ 2to3 is available in the standard library as :mod:`lib2to3`; a standalone
+ entry point is provided as :file:`Tools/scripts/2to3`.
+
argument
A value passed to a function or method, assigned to a name local to
the body. A function or method may have both positional arguments and