Kaydet (Commit) 24a49941 authored tarafından Guido van Rossum's avatar Guido van Rossum

Some long variables should have been int to match the 'i' format specifier.

üst 02840fdf
......@@ -143,7 +143,7 @@ op_getslice(s,a)
PyObject *s, *a;
{
PyObject *a1;
long a2,a3;
int a2,a3;
if (!PyArg_ParseTuple(a,"Oii",&a1,&a2,&a3))
return NULL;
......@@ -155,7 +155,7 @@ op_setslice(s,a)
PyObject *s, *a;
{
PyObject *a1, *a4;
long a2,a3;
int a2,a3;
if (!PyArg_ParseTuple(a,"OiiO",&a1,&a2,&a3,&a4))
return NULL;
......@@ -172,7 +172,7 @@ op_delslice(s,a)
PyObject *s, *a;
{
PyObject *a1;
long a2,a3;
int a2,a3;
if(! PyArg_ParseTuple(a,"Oii",&a1,&a2,&a3))
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment