SF patch #770521: make itertools type declarations static

(Contributed by Andrew I MacIntyre.)
This commit is contained in:
Raymond Hettinger 2003-07-14 07:07:12 +00:00
parent 92f200b569
commit 1d7a3489e9
1 changed files with 24 additions and 24 deletions

View File

@ -16,7 +16,7 @@ typedef struct {
int firstpass; int firstpass;
} cycleobject; } cycleobject;
PyTypeObject cycle_type; static PyTypeObject cycle_type;
static PyObject * static PyObject *
cycle_new(PyTypeObject *type, PyObject *args, PyObject *kwds) cycle_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -111,7 +111,7 @@ PyDoc_STRVAR(cycle_doc,
Return elements from the iterable until it is exhausted.\n\ Return elements from the iterable until it is exhausted.\n\
Then repeat the sequence indefinitely."); Then repeat the sequence indefinitely.");
PyTypeObject cycle_type = { static PyTypeObject cycle_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.cycle", /* tp_name */ "itertools.cycle", /* tp_name */
@ -166,7 +166,7 @@ typedef struct {
long start; long start;
} dropwhileobject; } dropwhileobject;
PyTypeObject dropwhile_type; static PyTypeObject dropwhile_type;
static PyObject * static PyObject *
dropwhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds) dropwhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -260,7 +260,7 @@ PyDoc_STRVAR(dropwhile_doc,
Drop items from the iterable while predicate(item) is true.\n\ Drop items from the iterable while predicate(item) is true.\n\
Afterwards, return every element until the iterable is exhausted."); Afterwards, return every element until the iterable is exhausted.");
PyTypeObject dropwhile_type = { static PyTypeObject dropwhile_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.dropwhile", /* tp_name */ "itertools.dropwhile", /* tp_name */
@ -315,7 +315,7 @@ typedef struct {
long stop; long stop;
} takewhileobject; } takewhileobject;
PyTypeObject takewhile_type; static PyTypeObject takewhile_type;
static PyObject * static PyObject *
takewhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds) takewhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -408,7 +408,7 @@ PyDoc_STRVAR(takewhile_doc,
Return successive entries from an iterable as long as the \n\ Return successive entries from an iterable as long as the \n\
predicate evaluates to true for each entry."); predicate evaluates to true for each entry.");
PyTypeObject takewhile_type = { static PyTypeObject takewhile_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.takewhile", /* tp_name */ "itertools.takewhile", /* tp_name */
@ -465,7 +465,7 @@ typedef struct {
long cnt; long cnt;
} isliceobject; } isliceobject;
PyTypeObject islice_type; static PyTypeObject islice_type;
static PyObject * static PyObject *
islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds) islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -598,7 +598,7 @@ specified as another value, step determines how many values are \n\
skipped between successive calls. Works like a slice() on a list\n\ skipped between successive calls. Works like a slice() on a list\n\
but returns an iterator."); but returns an iterator.");
PyTypeObject islice_type = { static PyTypeObject islice_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.islice", /* tp_name */ "itertools.islice", /* tp_name */
@ -652,7 +652,7 @@ typedef struct {
PyObject *it; PyObject *it;
} starmapobject; } starmapobject;
PyTypeObject starmap_type; static PyTypeObject starmap_type;
static PyObject * static PyObject *
starmap_new(PyTypeObject *type, PyObject *args, PyObject *kwds) starmap_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -737,7 +737,7 @@ PyDoc_STRVAR(starmap_doc,
Return an iterator whose values are returned from the function evaluated\n\ Return an iterator whose values are returned from the function evaluated\n\
with a argument tuple taken from the given sequence."); with a argument tuple taken from the given sequence.");
PyTypeObject starmap_type = { static PyTypeObject starmap_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.starmap", /* tp_name */ "itertools.starmap", /* tp_name */
@ -791,7 +791,7 @@ typedef struct {
PyObject *func; PyObject *func;
} imapobject; } imapobject;
PyTypeObject imap_type; static PyTypeObject imap_type;
static PyObject * static PyObject *
imap_new(PyTypeObject *type, PyObject *args, PyObject *kwds) imap_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -924,7 +924,7 @@ an iterator instead of a list and that it stops when the shortest\n\
iterable is exhausted instead of filling in None for shorter\n\ iterable is exhausted instead of filling in None for shorter\n\
iterables."); iterables.");
PyTypeObject imap_type = { static PyTypeObject imap_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.imap", /* tp_name */ "itertools.imap", /* tp_name */
@ -979,7 +979,7 @@ typedef struct {
PyObject *ittuple; /* tuple of iterators */ PyObject *ittuple; /* tuple of iterators */
} chainobject; } chainobject;
PyTypeObject chain_type; static PyTypeObject chain_type;
static PyObject * static PyObject *
chain_new(PyTypeObject *type, PyObject *args, PyObject *kwds) chain_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1061,7 +1061,7 @@ Return a chain object whose .next() method returns elements from the\n\
first iterable until it is exhausted, then elements from the next\n\ first iterable until it is exhausted, then elements from the next\n\
iterable, until all of the iterables are exhausted."); iterable, until all of the iterables are exhausted.");
PyTypeObject chain_type = { static PyTypeObject chain_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.chain", /* tp_name */ "itertools.chain", /* tp_name */
@ -1115,7 +1115,7 @@ typedef struct {
PyObject *it; PyObject *it;
} ifilterobject; } ifilterobject;
PyTypeObject ifilter_type; static PyTypeObject ifilter_type;
static PyObject * static PyObject *
ifilter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ifilter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1210,7 +1210,7 @@ PyDoc_STRVAR(ifilter_doc,
Return those items of sequence for which function(item) is true.\n\ Return those items of sequence for which function(item) is true.\n\
If function is None, return the items that are true."); If function is None, return the items that are true.");
PyTypeObject ifilter_type = { static PyTypeObject ifilter_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.ifilter", /* tp_name */ "itertools.ifilter", /* tp_name */
@ -1264,7 +1264,7 @@ typedef struct {
PyObject *it; PyObject *it;
} ifilterfalseobject; } ifilterfalseobject;
PyTypeObject ifilterfalse_type; static PyTypeObject ifilterfalse_type;
static PyObject * static PyObject *
ifilterfalse_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ifilterfalse_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1359,7 +1359,7 @@ PyDoc_STRVAR(ifilterfalse_doc,
Return those items of sequence for which function(item) is false.\n\ Return those items of sequence for which function(item) is false.\n\
If function is None, return the items that are false."); If function is None, return the items that are false.");
PyTypeObject ifilterfalse_type = { static PyTypeObject ifilterfalse_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.ifilterfalse", /* tp_name */ "itertools.ifilterfalse", /* tp_name */
@ -1412,7 +1412,7 @@ typedef struct {
long cnt; long cnt;
} countobject; } countobject;
PyTypeObject count_type; static PyTypeObject count_type;
static PyObject * static PyObject *
count_new(PyTypeObject *type, PyObject *args, PyObject *kwds) count_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1444,7 +1444,7 @@ PyDoc_STRVAR(count_doc,
Return a count object whose .next() method returns consecutive\n\ Return a count object whose .next() method returns consecutive\n\
integers starting from zero or, if specified, from firstval."); integers starting from zero or, if specified, from firstval.");
PyTypeObject count_type = { static PyTypeObject count_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.count", /* tp_name */ "itertools.count", /* tp_name */
@ -1499,7 +1499,7 @@ typedef struct {
PyObject *result; PyObject *result;
} izipobject; } izipobject;
PyTypeObject izip_type; static PyTypeObject izip_type;
static PyObject * static PyObject *
izip_new(PyTypeObject *type, PyObject *args, PyObject *kwds) izip_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1637,7 +1637,7 @@ is exhausted and then it raises StopIteration. Works like the zip()\n\
function but consumes less memory by returning an iterator instead of\n\ function but consumes less memory by returning an iterator instead of\n\
a list."); a list.");
PyTypeObject izip_type = { static PyTypeObject izip_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.izip", /* tp_name */ "itertools.izip", /* tp_name */
@ -1691,7 +1691,7 @@ typedef struct {
long cnt; long cnt;
} repeatobject; } repeatobject;
PyTypeObject repeat_type; static PyTypeObject repeat_type;
static PyObject * static PyObject *
repeat_new(PyTypeObject *type, PyObject *args, PyObject *kwds) repeat_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
@ -1747,7 +1747,7 @@ PyDoc_STRVAR(repeat_doc,
for the specified number of times. If not specified, returns the element\n\ for the specified number of times. If not specified, returns the element\n\
endlessly."); endlessly.");
PyTypeObject repeat_type = { static PyTypeObject repeat_type = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /* ob_size */ 0, /* ob_size */
"itertools.repeat", /* tp_name */ "itertools.repeat", /* tp_name */