[Python-checkins] python/dist/src/Objects unicodeobject.c, 2.215, 2.216

lemburg at users.sourceforge.net lemburg at users.sourceforge.net
Sat Jul 10 14:04:23 CEST 2004


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9304/Objects

Modified Files:
	unicodeobject.c 
Log Message:
Fix a copy&paste typo.


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.215
retrieving revision 2.216
diff -C2 -d -r2.215 -r2.216
*** unicodeobject.c	8 Jul 2004 19:13:54 -0000	2.215
--- unicodeobject.c	10 Jul 2004 12:04:20 -0000	2.216
***************
*** 4963,4967 ****
  
  static PyObject *
! unicode_decode(PyStringObject *self, PyObject *args)
  {
      char *encoding = NULL;
--- 4963,4967 ----
  
  static PyObject *
! unicode_decode(PyUnicodeObject *self, PyObject *args)
  {
      char *encoding = NULL;



More information about the Python-checkins mailing list