Update of /cvsroot/pybot/pybot/pybot/modules
In directory sc8-pr-cvs1:/tmp/cvs-serv14294/pybot/modules
Modified Files:
eval.py
Log Message:
Fixed dict["str"] = round.
Index: eval.py
===================================================================
RCS file: /cvsroot/pybot/pybot/pybot/modules/eval.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** eval.py 29 Aug 2003 15:10:01 -0000 1.9
--- eval.py 29 Aug 2003 16:35:31 -0000 1.10
***************
*** 85,93 ****
self.dict["repr"] = repr
self.dict["round"] = round
! self.dict["str"] = round
self.dict["tuple"] = tuple
self.dict["unichr"] = unichr
self.dict["unicode"] = unicode
! self.dict["xrange"] = range
self.dict["zip"] = zip
--- 85,93 ----
self.dict["repr"] = repr
self.dict["round"] = round
! self.dict["str"] = str
self.dict["tuple"] = tuple
self.dict["unichr"] = unichr
self.dict["unicode"] = unicode
! self.dict["xrange"] = xrange
self.dict["zip"] = zip
|