From: Andrew M. Kuchling Date: Sat, 21 Jun 2008 13:29:12 +0000 (+0000) Subject: Docstring typo X-Git-Tag: v2.6b2~205 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d897264464ba153c1c50c0745199392fab796eff;p=thirdparty%2FPython%2Fcpython.git Docstring typo --- diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 6e5df19e6893..b2ddf6bd988c 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -2725,7 +2725,7 @@ PyDoc_STRVAR(pop__doc__, "B.pop([index]) -> int\n\ \n\ Remove and return a single item from B. If no index\n\ -argument is give, will pop the last value."); +argument is given, will pop the last value."); static PyObject * bytes_pop(PyByteArrayObject *self, PyObject *args) {