Skip to content

Commit

Permalink
Fixed bug in expr handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Nov 12, 1997
1 parent 4eb9c00 commit 4764f66
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions DT_In.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
of the module 'Missing', if present.
''' #'

__rcs_id__='$Id: DT_In.py,v 1.10 1997/11/11 18:38:03 jim Exp $'
__rcs_id__='$Id: DT_In.py,v 1.11 1997/11/12 23:25:56 jim Exp $'

############################################################################
# Copyright
Expand Down Expand Up @@ -284,7 +284,7 @@
# (540) 371-6909
#
############################################################################
__version__='$Revision: 1.10 $'[11:-2]
__version__='$Revision: 1.11 $'[11:-2]

from DT_Util import *
from string import find, atoi, join
Expand Down Expand Up @@ -315,7 +315,7 @@ def __init__(self, blocks):
'=[0-9]+\(&\|$\)')

name,expr=name_param(args,'in',1)
self.__name__, expr = name, expr
self.__name__, self.expr = name, expr
self.section=section
if len(blocks) > 1:
if len(blocks) != 2: raise ParseError, (
Expand Down Expand Up @@ -791,6 +791,9 @@ def previous_batches(self):

############################################################################
# $Log: DT_In.py,v $
# Revision 1.11 1997/11/12 23:25:56 jim
# Fixed bug in expr handling.
#
# Revision 1.10 1997/11/11 18:38:03 jim
# Made sequence-items work when iterating over mapping items.
#
Expand Down

0 comments on commit 4764f66

Please sign in to comment.