diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2015-12-07 03:30:16 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2015-12-07 03:30:16 +0000 |
commit | b1567512dcfae81b7eb1ca18aca6e99097e9eea5 (patch) | |
tree | 642aaf9f9aeef0d788f6b348576e1d82ee4913a6 /src/pyparsing.py | |
parent | 7ae4f0cb4ae5360ce12c14032c314d82e1d206b8 (diff) | |
download | pyparsing-git-b1567512dcfae81b7eb1ca18aca6e99097e9eea5.tar.gz |
Remove duplicated code
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r-- | src/pyparsing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py index f30feb9..3366b8a 100644 --- a/src/pyparsing.py +++ b/src/pyparsing.py @@ -2957,7 +2957,6 @@ class Forward(ParseElementEnhance): if isinstance( other, basestring ):
other = ParserElement.literalStringClass(other)
self.expr = other
- self.mayReturnEmpty = other.mayReturnEmpty
self.strRepr = None
self.mayIndexError = self.expr.mayIndexError
self.mayReturnEmpty = self.expr.mayReturnEmpty
|