[Python-checkins] CVS: python/dist/src/Lib imaplib.py,1.27,1.27.4.1
Thomas Wouters
twouters@users.sourceforge.net
2001年7月20日 03:54:23 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv3597/Lib
Modified Files:
Tag: release21-maint
imaplib.py
Log Message:
Backport Piers Lauder's checkin 1.30:
fix missed conversion in ESR's string conversion
This should be the *last* checkin in this branch, barring brown-bags,
showstoppers and release cruft.
Index: imaplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/imaplib.py,v
retrieving revision 1.27
retrieving revision 1.27.4.1
diff -C2 -r1.27 -r1.27.4.1
*** imaplib.py 2001年02月22日 13:24:27 1.27
--- imaplib.py 2001年07月20日 10:54:21 1.27.4.1
***************
*** 1017,1021 ****
t = '\n\t\t'
l = map(lambda x:'%s: "%s"' % (x[0], x[1][0] and '" "'.join(x[1]) or ''), l)
! _mesg('untagged responses dump:%s%s' % (t, j(l, t)))
_cmd_log = [] # Last `_cmd_log_len' interactions
--- 1017,1021 ----
t = '\n\t\t'
l = map(lambda x:'%s: "%s"' % (x[0], x[1][0] and '" "'.join(x[1]) or ''), l)
! _mesg('untagged responses dump:%s%s' % (t, t.join(l)))
_cmd_log = [] # Last `_cmd_log_len' interactions