projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87f2875
)
Fix compiler warning (int vs Py_ssize_t mismatch
author
Neal Norwitz
<nnorwitz@gmail.com>
Sun, 19 Feb 2006 19:31:50 +0000
(19:31 +0000)
committer
Neal Norwitz
<nnorwitz@gmail.com>
Sun, 19 Feb 2006 19:31:50 +0000
(19:31 +0000)
Python/bltinmodule.c
patch
|
blob
|
history
diff --git
a/Python/bltinmodule.c
b/Python/bltinmodule.c
index c92499d2e567d2a9c318bb5cac62b98a57eb25d5..388ec720f038e4d71f195bc3be4330442c86d22b 100644
(file)
--- a/
Python/bltinmodule.c
+++ b/
Python/bltinmodule.c
@@
-2141,7
+2141,7
@@
builtin_zip(PyObject *self, PyObject *args)
if (it == NULL) {
if (PyErr_ExceptionMatches(PyExc_TypeError))
PyErr_Format(PyExc_TypeError,
- "zip argument #%d must support iteration",
+ "zip argument #%
z
d must support iteration",
i+1);
goto Fail_ret_itlist;
}