[Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.116,2.117

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 21 Sep 2001 08:38:19 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv12553

Modified Files:
	unicodeobject.c 
Log Message:
Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead
of \\.


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.116
retrieving revision 2.117
diff -C2 -d -r2.116 -r2.117
*** unicodeobject.c	2001/09/20 17:22:58	2.116
--- unicodeobject.c	2001/09/21 15:38:17	2.117
***************
*** 1759,1762 ****
--- 1759,1763 ----
              *p++ = '\\';
              *p++ = (char) ch;
+ 	    continue;
          }