[Python-checkins] python/dist/src/Objects unicodeobject.c,2.153,2.154

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 13 Jun 2002 14:25:19 -0700


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

Modified Files:
	unicodeobject.c 
Log Message:
Fix typo in exception message

Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.153
retrieving revision 2.154
diff -C2 -d -r2.153 -r2.154
*** unicodeobject.c	13 Jun 2002 20:33:01 -0000	2.153
--- unicodeobject.c	13 Jun 2002 21:25:17 -0000	2.154
***************
*** 5133,5137 ****
  {
      PyErr_SetString(PyExc_TypeError,
! 		    "cannot use unicode as modifyable buffer");
      return -1;
  }
--- 5133,5137 ----
  {
      PyErr_SetString(PyExc_TypeError,
! 		    "cannot use unicode as modifiable buffer");
      return -1;
  }