From: Sjoerd Mullender Date: Mon, 17 Dec 2001 11:39:56 +0000 (+0000) Subject: Portability fix: Not every compiler implements the extension of X-Git-Tag: v2.2.1c1~330 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=564980bd86017c8ab3b94f6c2be7259c87d9de05;p=python Portability fix: Not every compiler implements the extension of unescaped newlines in strings. --- diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 6d7f29da78..f24cbcf4bf 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -508,7 +508,7 @@ It can be called either on the class (e.g. C.f()) or on an instance\n\ (e.g. C().f()). The instance is ignored except for its class.\n\ 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.";