summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-10-07 01:32:15 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-10-07 01:32:15 +0000
commit37028c5fe0ee24b2ffe48974a97e4e07e29fb844 (patch)
treea6a75f01607fb4ad0b28e1dad98cb879dbc4285b
parent70f9598b67b1907c2ec34b33abe768bcca0ab8e4 (diff)
downloadpyparsing-37028c5fe0ee24b2ffe48974a97e4e07e29fb844.tar.gz
Fix docstring formatting for epydoc compatibility
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@450 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/pyparsing.py4
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'.)
"""