summaryrefslogtreecommitdiffstats
path: root/Doc/library/itertools.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-16 06:31:54 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-16 06:31:54 (GMT)
commit4ecfa455ae47bd955857348238c8bf8476819a1e (patch)
tree9b95caf33bcc54b96eaeb875a7c8cfd7db5c2809 /Doc/library/itertools.rst
parent98019e1cf6dec54ca6c56ceb150869c1430bfda3 (diff)
downloadcpython-4ecfa455ae47bd955857348238c8bf8476819a1e.zip
cpython-4ecfa455ae47bd955857348238c8bf8476819a1e.tar.gz
cpython-4ecfa455ae47bd955857348238c8bf8476819a1e.tar.bz2
Expand abbreviations FIFO and LIFO.
Diffstat (limited to 'Doc/library/itertools.rst')
-rw-r--r--Doc/library/itertools.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 8376f1a..d80bef3 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -591,7 +591,8 @@ loops that truncate the stream.
Return *n* independent iterators from a single iterable.
The following Python code helps explain what *tee* does (although the actual
- implementation is more complex and uses only a single underlying FIFO queue)::
+ implementation is more complex and uses only a single underlying
+ :abbr:`FIFO (first-in, first-out)` queue)::
def tee(iterable, n=2):
it = iter(iterable)