summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-02 05:31:09 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-02 05:31:09 (GMT)
commit4669fb474b1a4b9e55467f4fe2fc9c0132f03291 (patch)
treed95e0d938aa09f97f0549d4943b68fc6a4efad37 /Objects
parent2a7f58de1c3011a9ed167172e628ecdc70dbdb82 (diff)
downloadcpython-4669fb474b1a4b9e55467f4fe2fc9c0132f03291.zip
cpython-4669fb474b1a4b9e55467f4fe2fc9c0132f03291.tar.gz
cpython-4669fb474b1a4b9e55467f4fe2fc9c0132f03291.tar.bz2
Several fixes reported by jim F.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c59
1 files changed, 28 insertions, 31 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index cac767f..e668b08 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -671,7 +671,7 @@ PySequence_GetItem(s, i)
if(i < 0)
{
- if(0 > (l=m->sq_length(s))) return NULL;
+ if(! m->sq_length || 0 > (l=m->sq_length(s))) return NULL;
i += l;
}
@@ -689,13 +689,17 @@ PySequence_GetSlice(s, i1, i2)
if(! s) return Py_ReturnNullError();
- if(! ((m=s->ob_type->tp_as_sequence) && m->sq_length && m->sq_slice))
+ if(! ((m=s->ob_type->tp_as_sequence) && m->sq_slice))
return Py_ReturnMethodError("__getslice__");
- if(0 > (l=m->sq_length(s))) return NULL;
+ if(i1 < 0 || i2 < 0)
+ {
- if(i1 < 0) i1 += l;
- if(i2 < 0) i2 += l;
+ if(! m->sq_length || 0 > (l=m->sq_length(s))) return NULL;
+
+ if(i1 < 0) i1 += l;
+ if(i2 < 0) i2 += l;
+ }
return m->sq_slice(s,i1,i2);
}
@@ -802,16 +806,8 @@ PySequence_Tuple(s)
for(i=0; i < l; i++)
{
- if((item=PySequence_GetItem(s,i)))
- {
- if(PyTuple_SetItem(t,i,item) == -1)
- {
- Py_DECREF(item);
- Py_DECREF(t);
- return NULL;
- }
- }
- else
+ if(((item=PySequence_GetItem(s,i))) ||
+ PyTuple_SetItem(t,i,item) == -1)
{
Py_DECREF(t);
return NULL;
@@ -826,25 +822,20 @@ PySequence_List(s)
{
int l, i;
PyObject *t, *item;
+
if(! s) return Py_ReturnNullError();
+
Py_TRY((l=PySequence_Length(s)) != -1);
Py_TRY(t=PyList_New(l));
+
for(i=0; i < l; i++)
{
- if((item=PySequence_GetItem(s,i)))
- {
- if(PyList_SetItem(t,i,item) == -1)
- {
- Py_DECREF(item);
- Py_DECREF(t);
- return NULL;
- }
- }
- else
- {
- Py_DECREF(t);
- return NULL;
- }
+ if((item=PySequence_GetItem(s,i)) ||
+ PyList_SetItem(t,i,item) == -1)
+ {
+ Py_DECREF(t);
+ return NULL;
+ }
}
return t;
}
@@ -946,7 +937,10 @@ PyMapping_HasKeyString(o, key)
PyObject *v;
v=PyMapping_GetItemString(o,key);
- if(v) return 1;
+ if(v) {
+ Py_DECREF(v);
+ return 1;
+ }
PyErr_Clear();
return 0;
}
@@ -959,7 +953,10 @@ PyMapping_HasKey(o, key)
PyObject *v;
v=PyObject_GetItem(o,key);
- if(v) return 1;
+ if(v) {
+ Py_DECREF(v);
+ return 1;
+ }
PyErr_Clear();
return 0;
}