diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2016-10-06 12:25:06 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2016-10-06 12:25:06 +0000 |
commit | 91b39fb2eebd0a2ec220f87ed512614212424ec9 (patch) | |
tree | 46c5675ce714d93cab8ad5989780b46d39071458 /src/pyparsing.py | |
parent | 277884c3ee70307bb6ab234fb7c3286517cac65a (diff) | |
download | pyparsing-git-91b39fb2eebd0a2ec220f87ed512614212424ec9.tar.gz |
Fix @(*#&$#& typo
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r-- | src/pyparsing.py | 6 |
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)
|