[Python-checkins] r64440 - python/trunk/Objects/bytearrayobject.c

andrew.kuchling python-checkins at python.org
Sat Jun 21 15:29:13 CEST 2008


Author: andrew.kuchling
Date: Sat Jun 21 15:29:12 2008
New Revision: 64440

Log:
Docstring typo

Modified:
   python/trunk/Objects/bytearrayobject.c

Modified: python/trunk/Objects/bytearrayobject.c
==============================================================================
--- python/trunk/Objects/bytearrayobject.c	(original)
+++ python/trunk/Objects/bytearrayobject.c	Sat Jun 21 15:29:12 2008
@@ -2725,7 +2725,7 @@
 "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)
 {


More information about the Python-checkins mailing list