diff options
author | Raymond Hettinger <python@rcn.com> | 2004-06-12 07:59:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-06-12 07:59:40 (GMT) |
commit | 2e6694086f07d293d1907891f68cec6076d44f73 (patch) | |
tree | b34acf0454a77351410df64eaebc8814960e6119 /Doc/lib/libitertools.tex | |
parent | 34809170e507b690f205732773479baa654578bd (diff) | |
download | cpython-2e6694086f07d293d1907891f68cec6076d44f73.zip cpython-2e6694086f07d293d1907891f68cec6076d44f73.tar.gz cpython-2e6694086f07d293d1907891f68cec6076d44f73.tar.bz2 |
Minor wording and spacing nits.
Diffstat (limited to 'Doc/lib/libitertools.tex')
-rw-r--r-- | Doc/lib/libitertools.tex | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/lib/libitertools.tex b/Doc/lib/libitertools.tex index 1909592..b73ffce 100644 --- a/Doc/lib/libitertools.tex +++ b/Doc/lib/libitertools.tex @@ -476,7 +476,6 @@ def padnone(seq): """Returns the sequence elements and then returns None indefinitely. Useful for emulating the behavior of the built-in map() function. - """ return chain(seq, repeat(None)) @@ -494,7 +493,6 @@ def repeatfunc(func, times=None, *args): """Repeat calls to func with specified arguments. Example: repeatfunc(random.random) - """ if times is None: return starmap(func, repeat(args)) |