diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 10:38:36 +0200 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 10:38:36 +0200 |
| commit | afe55bba33a20f87a58f940186359237064b428f (patch) | |
| tree | 66d64a1518d79c3d0e90c0a1d0080cd88e887d99 /Modules/itertoolsmodule.c | |
| parent | 67df285a3389c7fdb8c7bd301314ac45e17f8074 (diff) | |
| download | cpython-git-afe55bba33a20f87a58f940186359237064b428f.tar.gz | |
Add API for static strings, primarily good for identifiers.
Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing.
Diffstat (limited to 'Modules/itertoolsmodule.c')
| -rw-r--r-- | Modules/itertoolsmodule.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index d0897c3eb9..4f81fe29d2 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -654,7 +654,9 @@ tee(PyObject *self, PyObject *args) copyable = it; PyTuple_SET_ITEM(result, 0, copyable); for (i=1 ; i<n ; i++) { - copyable = PyObject_CallMethod(copyable, "__copy__", NULL); + _Py_identifier(__copy__); + + copyable = _PyObject_CallMethodId(copyable, &PyId___copy__, NULL); if (copyable == NULL) { Py_DECREF(result); return NULL; |
