summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-29 17:41:05 (GMT)
committerGeorg Brandl <georg@python.org>2007-11-29 17:41:05 (GMT)
commit5c10664043448f1d27d7ce7eb67c2afe3f54b018 (patch)
treea5b3ada6978c46dc179e97011c02031bb4e9344e /Doc/howto
parentba956aebb96c38f1b8818189ed6ab18d5441313a (diff)
downloadcpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.zip
cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.gz
cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.bz2
Remove further mentions of long integers.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/doanddont.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst
index 07652bc..ace5bed 100644
--- a/Doc/howto/doanddont.rst
+++ b/Doc/howto/doanddont.rst
@@ -276,9 +276,9 @@ This cute little script prints the average of all numbers given on the command
line. The :func:`reduce` adds up all the numbers, and the rest is just some
pre- and postprocessing.
-On the same note, note that :func:`float`, :func:`int` and :func:`long` all
-accept arguments of type string, and so are suited to parsing --- assuming you
-are ready to deal with the :exc:`ValueError` they raise.
+On the same note, note that :func:`float` and :func:`int` accept arguments of
+type string, and so are suited to parsing --- assuming you are ready to deal
+with the :exc:`ValueError` they raise.
Using Backslash to Continue Statements