From 70f9598b67b1907c2ec34b33abe768bcca0ab8e4 Mon Sep 17 00:00:00 2001 From: ptmcg Date: Thu, 6 Oct 2016 12:25:06 +0000 Subject: Fix @(*#&$#& typo git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@449 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b --- src/pyparsing.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/pyparsing.py b/src/pyparsing.py index e9842ab..f49a373 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -3092,14 +3092,12 @@ class LineStart(_PositionToken): Example:: - test = """\ + test = '''\ AAA this line AAA and this line - AAA but not this one - B AAA and definitely not this one - """ + ''' for t in (LineStart() + 'AAA' + restOfLine).searchString(test): print(t) -- cgit v1.2.1