summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-09-09 19:26:00 (GMT)
committerGeorg Brandl <georg@python.org>2008-09-09 19:26:00 (GMT)
commit98064078f7c665466adc0f4733f1c28b90e60505 (patch)
treeeb84d0f67186fab0f4a650b1b8ef6cb0a4d1f17f /Objects
parent844f741039ada0cc0658beae40c2769c9c2cb5d5 (diff)
downloadcpython-98064078f7c665466adc0f4733f1c28b90e60505.zip
cpython-98064078f7c665466adc0f4733f1c28b90e60505.tar.gz
cpython-98064078f7c665466adc0f4733f1c28b90e60505.tar.bz2
Fix varname in docstring. #3822.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 603c507..524859c 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -7747,8 +7747,8 @@ unicode_upper(PyUnicodeObject *self)
PyDoc_STRVAR(zfill__doc__,
"S.zfill(width) -> unicode\n\
\n\
-Pad a numeric string x with zeros on the left, to fill a field\n\
-of the specified width. The string x is never truncated.");
+Pad a numeric string S with zeros on the left, to fill a field\n\
+of the specified width. The string S is never truncated.");
static PyObject *
unicode_zfill(PyUnicodeObject *self, PyObject *args)