diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2016-10-07 01:32:15 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2016-10-07 01:32:15 +0000 |
commit | cd2370d2ed2d39062bc685b5744595b539339813 (patch) | |
tree | a6a75f01607fb4ad0b28e1dad98cb879dbc4285b | |
parent | 91b39fb2eebd0a2ec220f87ed512614212424ec9 (diff) | |
download | pyparsing-git-cd2370d2ed2d39062bc685b5744595b539339813.tar.gz |
Fix docstring formatting for epydoc compatibility
-rw-r--r-- | src/pyparsing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py index f49a373..a212243 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -61,7 +61,7 @@ The pyparsing module handles some of the problems that are typically vexing when """
__version__ = "2.1.10"
-__versionTime__ = "06 Oct 2016 06:04 UTC"
+__versionTime__ = "07 Oct 2016 01:31 UTC"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string
@@ -2271,7 +2271,7 @@ class ParserElement(object): Each test string must be on a single line. If you want to test a string that spans multiple
lines, create a test like this::
- expr.runTest(r"this is a test\n of strings that spans \n 3 lines")
+ expr.runTest(r"this is a test\\n of strings that spans \\n 3 lines")
(Note that this is a raw string literal, you must include the leading 'r'.)
"""
|