summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-07-12 12:16:02 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-07-12 12:16:02 (GMT)
commita1884664ebef66fab69a54239e377d743a6a818f (patch)
treef13548311b7a9bc88369906508a186fd49de3609 /Modules
parent6720d91ee70517368589ceda104effca4313cee2 (diff)
downloadcpython-a1884664ebef66fab69a54239e377d743a6a818f.zip
cpython-a1884664ebef66fab69a54239e377d743a6a818f.tar.gz
cpython-a1884664ebef66fab69a54239e377d743a6a818f.tar.bz2
Fix typo in docstring.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_tkinter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 4c3e098..deb7f1c 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -750,7 +750,7 @@ PyTclObject_TclString(PyObject *self)
/* Like _str, but create Unicode if necessary. */
PyDoc_STRVAR(PyTclObject_string__doc__,
-"the string representation of this object, either as str8 or str8");
+"the string representation of this object, either as str8 or str");
static PyObject *
PyTclObject_string(PyTclObject *self, void *ignored)