]> granicus.if.org Git - python/commitdiff
Portability fix: Not every compiler implements the extension of
authorSjoerd Mullender <sjoerd@acm.org>
Mon, 17 Dec 2001 11:39:56 +0000 (11:39 +0000)
committerSjoerd Mullender <sjoerd@acm.org>
Mon, 17 Dec 2001 11:39:56 +0000 (11:39 +0000)
unescaped newlines in strings.

Objects/funcobject.c

index 6d7f29da788b650b45f1efe7da30b34f78691a5d..f24cbcf4bf504568710f0cc122179f20976fb1cc 100644 (file)
@@ -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.";