[Python-checkins] CVS: python/dist/src/Objects funcobject.c,2.49,2.50

Sjoerd Mullender sjoerd@users.sourceforge.net
Mon, 17 Dec 2001 03:39:58 -0800


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

Modified Files:
	funcobject.c 
Log Message:
Portability fix: Not every compiler implements the extension of
unescaped newlines in strings.


Index: funcobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v
retrieving revision 2.49
retrieving revision 2.50
diff -C2 -d -r2.49 -r2.50
*** funcobject.c	2001/12/17 02:53:53	2.49
--- funcobject.c	2001/12/17 11:39:56	2.50
***************
*** 509,513 ****
  If a class method is called for a derived class, the derived class\n\
  object is passed as the implied first argument.\n\
! 
  Class methods are different than C++ or Java static methods.\n\
  If you want those, see the staticmethod builtin.";
--- 509,513 ----
  If a class method is called for a derived class, the derived class\n\
  object is passed as the implied first argument.\n\
! \n\
  Class methods are different than C++ or Java static methods.\n\
  If you want those, see the staticmethod builtin.";