diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:44:29 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:44:29 +0200 |
commit | 4a7c03aab455613e9ba898b7cae73459fadd57ac (patch) | |
tree | d09ea360154f3e045e2f5a76a172b0e6417fc957 /Modules/itertoolsmodule.c | |
parent | df8f5b56c9dc5e950f39ed0221212256a39c1835 (diff) | |
parent | f51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff) | |
download | cpython-git-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz |
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r-- | Modules/itertoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index ff7867d5bc..2e7cc4fc57 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -1743,7 +1743,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) |