diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-05-31 19:01:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-05-31 19:01:00 (GMT) |
commit | 92816de18e3456f8304a1aaa6f28b151858a6e5d (patch) | |
tree | 5ecc10618f570481347e0a9db5b25dccf8c21bb1 /Lib/doctest.py | |
parent | 2a6ba9097ee3942ae328befaf074ce9722b93ca0 (diff) | |
download | cpython-92816de18e3456f8304a1aaa6f28b151858a6e5d.zip cpython-92816de18e3456f8304a1aaa6f28b151858a6e5d.tar.gz cpython-92816de18e3456f8304a1aaa6f28b151858a6e5d.tar.bz2 |
Patch #932930: suggest the use of rawstrings for backslashes.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r-- | Lib/doctest.py | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index 5020684..acde9c1 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -4,7 +4,7 @@ # Provided as-is; use at your own risk; no warranty; no promises; enjoy! -"""Module doctest -- a framework for running examples in docstrings. +r"""Module doctest -- a framework for running examples in docstrings. NORMAL USAGE @@ -200,17 +200,26 @@ Bummers: + Output to stdout is captured, but not output to stderr (exception tracebacks are captured via a different means). -+ If you continue a line via backslashing in an interactive session, or for - any other reason use a backslash, you need to double the backslash in the - docstring version. This is simply because you're in a string, and so the - backslash must be escaped for it to survive intact. Like: - ->>> if "yes" == \\ -... "y" + \\ -... "es": # in the source code you'll see the doubled backslashes -... print 'yes' -yes - ++ If you continue a line via backslashing in an interactive session, + or for any other reason use a backslash, you should use a raw + docstring, which will preserve your backslahses exactly as you type + them: + + >>> def f(x): + ... r'''Backslashes in a raw docstring: m\n''' + >>> print f.__doc__ + Backslashes in a raw docstring: m\n + + Otherwise, the backslash will be interpreted as part of the string. + E.g., the "\n" above would be interpreted as a newline character. + Alternatively, you can double each backslash in the doctest version + (and not use a raw string): + + >>> def f(x): + ... '''Backslashes in a raw docstring: m\\n''' + >>> print f.__doc__ + Backslashes in a raw docstring: m\n + The starting column doesn't matter: >>> assert "Easy!" |