From: <bl...@us...> - 2003-03-25 04:12:23
|
Update of /cvsroot/pywebsvcs/zsi/ZSI In directory sc8-pr-cvs1:/tmp/cvs-serv31971 Modified Files: TCtimes.py Log Message: changed _dict_to_tuple to return a tuple as opposed to a dict. this is for consistency with the python time tuple pattern. Index: TCtimes.py =================================================================== RCS file: /cvsroot/pywebsvcs/zsi/ZSI/TCtimes.py,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- TCtimes.py 19 Mar 2003 06:40:45 -0000 1.7 +++ TCtimes.py 25 Mar 2003 04:12:20 -0000 1.8 @@ -34,7 +34,7 @@ retval[4] -= m if d.get('neg', 0): retval[0:5] = map(operator.__neg__, retval[0:5]) - return retval + return tuple(retval) |