Issue #25523: Further a-to-an corrections.

This commit is contained in:
Serhiy Storchaka 2015-11-02 14:10:23 +02:00
parent 7462b64911
commit d65c9496da
34 changed files with 39 additions and 39 deletions

View file

@ -2693,7 +2693,7 @@ load_verify_locations(PySSLContext *self, PyObject *args, PyObject *kwds)
cadata_ascii = PyUnicode_AsASCIIString(cadata);
if (cadata_ascii == NULL) {
PyErr_SetString(PyExc_TypeError,
"cadata should be a ASCII string or a "
"cadata should be an ASCII string or a "
"bytes-like object");
goto error;
}

View file

@ -1725,7 +1725,7 @@ PyDoc_STRVAR(starmap_doc,
"starmap(function, sequence) --> starmap object\n\
\n\
Return an iterator whose values are returned from the function evaluated\n\
with a argument tuple taken from the given sequence.");
with an argument tuple taken from the given sequence.");
static PyTypeObject starmap_type = {
PyVarObject_HEAD_INIT(NULL, 0)