diff options
author | Raymond Hettinger <python@rcn.com> | 2004-11-05 16:38:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-11-05 16:38:08 (GMT) |
commit | bb4e859ecfd8d8122c879435f7836377293b7e50 (patch) | |
tree | ea4ffd6fad7a272fd0722cc7cfcc5d922437c0c2 | |
parent | ec6eb369d518994e9616e0515056ac0f2cff00a6 (diff) | |
download | cpython-bb4e859ecfd8d8122c879435f7836377293b7e50.zip cpython-bb4e859ecfd8d8122c879435f7836377293b7e50.tar.gz cpython-bb4e859ecfd8d8122c879435f7836377293b7e50.tar.bz2 |
SF bug #1060825: Error in difflib docs
-rw-r--r-- | Doc/lib/libdifflib.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libdifflib.tex b/Doc/lib/libdifflib.tex index 4283aba..666a9e3 100644 --- a/Doc/lib/libdifflib.tex +++ b/Doc/lib/libdifflib.tex @@ -320,7 +320,7 @@ The \class{SequenceMatcher} class has this constructor: Optional argument \var{isjunk} must be \code{None} (the default) or a one-argument function that takes a sequence element and returns true if and only if the element is ``junk'' and should be ignored. - Passing \code{None} for \var{b} is equivalent to passing + Passing \code{None} for \var{isjunk} is equivalent to passing \code{lambda x: 0}; in other words, no elements are ignored. For example, pass: |