diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-06-21 13:29:12 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-06-21 13:29:12 +0000 |
commit | d897264464ba153c1c50c0745199392fab796eff (patch) | |
tree | aa44c0e9b412259830fc75f62ae0acb283ecf0fb | |
parent | 30fa13f3a00e9d782f7ae1bef380d663ab9956c2 (diff) | |
download | cpython-git-d897264464ba153c1c50c0745199392fab796eff.tar.gz |
Docstring typo
-rw-r--r-- | Objects/bytearrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 6e5df19e68..b2ddf6bd98 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) { |