From: Georg Brandl Date: Tue, 9 Sep 2008 19:26:00 +0000 (+0000) Subject: Fix varname in docstring. #3822. X-Git-Tag: v2.6rc1~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98064078f7c665466adc0f4733f1c28b90e60505;p=thirdparty%2FPython%2Fcpython.git Fix varname in docstring. #3822. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 603c5070a8e3..524859c1116d 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)