summaryrefslogtreecommitdiff
path: root/src/pyparsing.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2016-10-06 12:25:06 +0000
committerPaul McGuire <ptmcg@austin.rr.com>2016-10-06 12:25:06 +0000
commit91b39fb2eebd0a2ec220f87ed512614212424ec9 (patch)
tree46c5675ce714d93cab8ad5989780b46d39071458 /src/pyparsing.py
parent277884c3ee70307bb6ab234fb7c3286517cac65a (diff)
downloadpyparsing-git-91b39fb2eebd0a2ec220f87ed512614212424ec9.tar.gz
Fix @(*#&$#& typo
Diffstat (limited to 'src/pyparsing.py')
-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)