summaryrefslogtreecommitdiff
path: root/src/pyparsing.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2015-12-07 03:30:16 +0000
committerPaul McGuire <ptmcg@austin.rr.com>2015-12-07 03:30:16 +0000
commitb1567512dcfae81b7eb1ca18aca6e99097e9eea5 (patch)
tree642aaf9f9aeef0d788f6b348576e1d82ee4913a6 /src/pyparsing.py
parent7ae4f0cb4ae5360ce12c14032c314d82e1d206b8 (diff)
downloadpyparsing-git-b1567512dcfae81b7eb1ca18aca6e99097e9eea5.tar.gz
Remove duplicated code
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r--src/pyparsing.py1
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