From 37028c5fe0ee24b2ffe48974a97e4e07e29fb844 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Fri, 7 Oct 2016 01:32:15 +0000 Subject: Fix docstring formatting for epydoc compatibility git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@450 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b --- src/pyparsing.py | 4 ++-- 1 file 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 " 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'.) """ -- cgit v1.2.1