summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-10-08 03:37:54 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-10-08 03:37:54 (GMT)
commitad4b0001794e47368b0997183b30b1171eab2790 (patch)
treea390e85fcddef84bd3182a420836fa52447c4649 /Objects/stringobject.c
parente4831f6b1296869afd7ac88e674196a599542d50 (diff)
downloadcpython-ad4b0001794e47368b0997183b30b1171eab2790.zip
cpython-ad4b0001794e47368b0997183b30b1171eab2790.tar.gz
cpython-ad4b0001794e47368b0997183b30b1171eab2790.tar.bz2
Issue #14783: Backport changes from 3.2.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 7c4a86b..39fa740 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -3799,7 +3799,7 @@ PyTypeObject PyBaseString_Type = {
};
PyDoc_STRVAR(string_doc,
-"str(object) -> string\n\
+"str(object='') -> string\n\
\n\
Return a nice string representation of the object.\n\
If the argument is a string, the return value is the same object.");