summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-10-06 12:25:06 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-10-06 12:25:06 +0000
commit70f9598b67b1907c2ec34b33abe768bcca0ab8e4 (patch)
tree46c5675ce714d93cab8ad5989780b46d39071458
parentcb19493f8d747d4546f3adb92f78effc993428f9 (diff)
downloadpyparsing-70f9598b67b1907c2ec34b33abe768bcca0ab8e4.tar.gz
Fix @(*#&$#& typo
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@449 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/pyparsing.py6
1 files 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)