diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-17 18:03:25 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-17 18:03:25 (GMT) |
commit | c4089d84d8c958b25dd5772f9d8e28a26825c1bd (patch) | |
tree | 4177a50e9b9c9c9ff2215f9ef2c93c3b19b61319 | |
parent | f3262b72cad27d80def2c21b23013b73898e889d (diff) | |
download | cpython-c4089d84d8c958b25dd5772f9d8e28a26825c1bd.zip cpython-c4089d84d8c958b25dd5772f9d8e28a26825c1bd.tar.gz cpython-c4089d84d8c958b25dd5772f9d8e28a26825c1bd.tar.bz2 |
In the example showing the irrelevance of start columns, restore that the
start columns differ (editing had pushed them all into column 0).
-rw-r--r-- | Doc/lib/libdoctest.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libdoctest.tex b/Doc/lib/libdoctest.tex index fc95a31..d17b6eb 100644 --- a/Doc/lib/libdoctest.tex +++ b/Doc/lib/libdoctest.tex @@ -304,10 +304,10 @@ yes The starting column doesn't matter: \begin{verbatim} ->>> assert "Easy!" ->>> import math ->>> math.floor(1.9) -1.0 + >>> assert "Easy!" + >>> import math + >>> math.floor(1.9) + 1.0 \end{verbatim} and as many leading whitespace characters are stripped from the expected |