diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 2001-12-17 11:39:56 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 2001-12-17 11:39:56 (GMT) |
commit | 564980bd86017c8ab3b94f6c2be7259c87d9de05 (patch) | |
tree | f8169d13b5565b55847163a1316e6a48f04fb139 /Objects/funcobject.c | |
parent | ca9aaf36e19598abb1969d43d3ede8b42c13195b (diff) | |
download | cpython-564980bd86017c8ab3b94f6c2be7259c87d9de05.zip cpython-564980bd86017c8ab3b94f6c2be7259c87d9de05.tar.gz cpython-564980bd86017c8ab3b94f6c2be7259c87d9de05.tar.bz2 |
Portability fix: Not every compiler implements the extension of
unescaped newlines in strings.
Diffstat (limited to 'Objects/funcobject.c')
-rw-r--r-- | Objects/funcobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 6d7f29d..f24cbcf 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."; |