Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
05311481
Commit
05311481
authored
Apr 20, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding iterobject.[ch], which were accidentally not added. Sorry\!
parent
59d1d2b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
201 additions
and
0 deletions
+201
-0
Include/iterobject.h
Include/iterobject.h
+13
-0
Objects/iterobject.c
Objects/iterobject.c
+188
-0
No files found.
Include/iterobject.h
0 → 100644
View file @
05311481
/* Iterators (the basic kind, over a sequence) */
extern
DL_IMPORT
(
PyTypeObject
)
PyIter_Type
;
#define PyIter_Check(op) ((op)->ob_type == &PyIter_Type)
extern
DL_IMPORT
(
PyObject
*
)
PyIter_New
(
PyObject
*
);
extern
DL_IMPORT
(
PyTypeObject
)
PyCallIter_Type
;
#define PyCallIter_Check(op) ((op)->ob_type == &PyCallIter_Type)
extern
DL_IMPORT
(
PyObject
*
)
PyCallIter_New
(
PyObject
*
,
PyObject
*
);
Objects/iterobject.c
0 → 100644
View file @
05311481
/* Iterator objects */
#include "Python.h"
typedef
struct
{
PyObject_HEAD
long
it_index
;
PyObject
*
it_seq
;
}
iterobject
;
PyObject
*
PyIter_New
(
PyObject
*
seq
)
{
iterobject
*
it
;
it
=
PyObject_NEW
(
iterobject
,
&
PyIter_Type
);
if
(
it
==
NULL
)
return
NULL
;
it
->
it_index
=
0
;
Py_INCREF
(
seq
);
it
->
it_seq
=
seq
;
return
(
PyObject
*
)
it
;
}
static
void
iter_dealloc
(
iterobject
*
it
)
{
Py_DECREF
(
it
->
it_seq
);
PyObject_DEL
(
it
);
}
static
PyObject
*
iter_next
(
iterobject
*
it
,
PyObject
*
args
)
{
PyObject
*
seq
=
it
->
it_seq
;
if
(
PyList_Check
(
seq
))
{
PyObject
*
item
;
if
(
it
->
it_index
>=
PyList_GET_SIZE
(
seq
))
{
PyErr_SetObject
(
PyExc_StopIteration
,
Py_None
);
return
NULL
;
}
item
=
PyList_GET_ITEM
(
seq
,
it
->
it_index
);
it
->
it_index
++
;
Py_INCREF
(
item
);
return
item
;
}
else
{
PyObject
*
result
=
PySequence_GetItem
(
seq
,
it
->
it_index
++
);
if
(
result
==
NULL
&&
PyErr_ExceptionMatches
(
PyExc_IndexError
))
PyErr_SetObject
(
PyExc_StopIteration
,
Py_None
);
return
result
;
}
}
static
PyObject
*
iter_getiter
(
PyObject
*
it
)
{
Py_INCREF
(
it
);
return
it
;
}
static
PyMethodDef
iter_methods
[]
=
{
{
"next"
,
(
PyCFunction
)
iter_next
,
METH_VARARGS
,
"it.next() -- get the next value, or raise StopIteration"
},
{
NULL
,
NULL
}
/* sentinel */
};
static
PyObject
*
iter_getattr
(
iterobject
*
it
,
char
*
name
)
{
return
Py_FindMethod
(
iter_methods
,
(
PyObject
*
)
it
,
name
);
}
PyTypeObject
PyIter_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"iterator"
,
/* tp_name */
sizeof
(
iterobject
),
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
iter_dealloc
,
/* tp_dealloc */
0
,
/* tp_print */
(
getattrfunc
)
iter_getattr
,
/* tp_getattr */
0
,
/* tp_setattr */
0
,
/* tp_compare */
0
,
/* tp_repr */
0
,
/* tp_as_number */
0
,
/* tp_as_sequence */
0
,
/* tp_as_mapping */
0
,
/* tp_hash */
0
,
/* tp_call */
0
,
/* tp_str */
0
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
,
/* tp_flags */
0
,
/* tp_doc */
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
(
getiterfunc
)
iter_getiter
,
/* tp_iter */
};
/* -------------------------------------- */
typedef
struct
{
PyObject_HEAD
PyObject
*
it_callable
;
PyObject
*
it_sentinel
;
}
calliterobject
;
PyObject
*
PyCallIter_New
(
PyObject
*
callable
,
PyObject
*
sentinel
)
{
calliterobject
*
it
;
it
=
PyObject_NEW
(
calliterobject
,
&
PyCallIter_Type
);
if
(
it
==
NULL
)
return
NULL
;
Py_INCREF
(
callable
);
it
->
it_callable
=
callable
;
Py_INCREF
(
sentinel
);
it
->
it_sentinel
=
sentinel
;
return
(
PyObject
*
)
it
;
}
static
void
calliter_dealloc
(
calliterobject
*
it
)
{
Py_DECREF
(
it
->
it_callable
);
Py_DECREF
(
it
->
it_sentinel
);
PyObject_DEL
(
it
);
}
static
PyObject
*
calliter_next
(
calliterobject
*
it
,
PyObject
*
args
)
{
PyObject
*
result
=
PyObject_CallObject
(
it
->
it_callable
,
NULL
);
if
(
result
!=
NULL
)
{
if
(
PyObject_RichCompareBool
(
result
,
it
->
it_sentinel
,
Py_EQ
))
{
PyErr_SetObject
(
PyExc_StopIteration
,
Py_None
);
Py_DECREF
(
result
);
result
=
NULL
;
}
}
return
result
;
}
static
PyMethodDef
calliter_methods
[]
=
{
{
"next"
,
(
PyCFunction
)
calliter_next
,
METH_VARARGS
,
"it.next() -- get the next value, or raise StopIteration"
},
{
NULL
,
NULL
}
/* sentinel */
};
static
PyObject
*
calliter_getattr
(
calliterobject
*
it
,
char
*
name
)
{
return
Py_FindMethod
(
calliter_methods
,
(
PyObject
*
)
it
,
name
);
}
PyTypeObject
PyCallIter_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"callable-iterator"
,
/* tp_name */
sizeof
(
calliterobject
),
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
calliter_dealloc
,
/* tp_dealloc */
0
,
/* tp_print */
(
getattrfunc
)
calliter_getattr
,
/* tp_getattr */
0
,
/* tp_setattr */
0
,
/* tp_compare */
0
,
/* tp_repr */
0
,
/* tp_as_number */
0
,
/* tp_as_sequence */
0
,
/* tp_as_mapping */
0
,
/* tp_hash */
0
,
/* tp_call */
0
,
/* tp_str */
0
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
,
/* tp_flags */
0
,
/* tp_doc */
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
0
,
/* tp_weaklistoffset */
(
getiterfunc
)
iter_getiter
,
/* tp_iter */
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment