[Python-checkins] python/dist/src/Lib pickletools.py,1.15,1.16
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
2003年1月28日 07:37:18 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv26305
Modified Files:
pickletools.py
Log Message:
_dis_test should be a raw string now that it contains \x escapes.
Index: pickletools.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickletools.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** pickletools.py 28 Jan 2003 15:27:57 -0000 1.15
--- pickletools.py 28 Jan 2003 15:37:13 -0000 1.16
***************
*** 1900,1904 ****
! _dis_test = """
>>> import pickle
>>> x = [1, 2, (3, 4), {'abc': u"def"}]
--- 1900,1904 ----
! _dis_test = r"""
>>> import pickle
>>> x = [1, 2, (3, 4), {'abc': u"def"}]