2017-01-16 22:46:13 -04:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(OrderedDict_fromkeys__doc__,
|
|
|
|
"fromkeys($type, /, iterable, value=None)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
2017-01-24 18:30:04 -04:00
|
|
|
"Create a new ordered dictionary with keys from iterable and values set to value.");
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
#define ORDEREDDICT_FROMKEYS_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"fromkeys", (PyCFunction)OrderedDict_fromkeys, METH_FASTCALL|METH_KEYWORDS|METH_CLASS, OrderedDict_fromkeys__doc__},
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
OrderedDict_fromkeys_impl(PyTypeObject *type, PyObject *seq, PyObject *value);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
OrderedDict_fromkeys(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2017-01-16 22:46:13 -04:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
static const char * const _keywords[] = {"iterable", "value", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"O|O:fromkeys", _keywords, 0};
|
|
|
|
PyObject *seq;
|
|
|
|
PyObject *value = Py_None;
|
|
|
|
|
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
|
|
|
&seq, &value)) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
return_value = OrderedDict_fromkeys_impl(type, seq, value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(OrderedDict_setdefault__doc__,
|
|
|
|
"setdefault($self, /, key, default=None)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
2017-01-24 18:30:04 -04:00
|
|
|
"Insert key with a value of default if key is not in the dictionary.\n"
|
|
|
|
"\n"
|
|
|
|
"Return the value for key if key is in the dictionary, else default.");
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
#define ORDEREDDICT_SETDEFAULT_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"setdefault", (PyCFunction)OrderedDict_setdefault, METH_FASTCALL|METH_KEYWORDS, OrderedDict_setdefault__doc__},
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
OrderedDict_setdefault_impl(PyODictObject *self, PyObject *key,
|
2017-01-19 13:38:13 -04:00
|
|
|
PyObject *default_value);
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
OrderedDict_setdefault(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2017-01-16 22:46:13 -04:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
static const char * const _keywords[] = {"key", "default", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"O|O:setdefault", _keywords, 0};
|
|
|
|
PyObject *key;
|
2017-01-19 13:38:13 -04:00
|
|
|
PyObject *default_value = Py_None;
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2017-01-19 13:38:13 -04:00
|
|
|
&key, &default_value)) {
|
2017-01-16 22:46:13 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2017-01-19 13:38:13 -04:00
|
|
|
return_value = OrderedDict_setdefault_impl(self, key, default_value);
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(OrderedDict_popitem__doc__,
|
|
|
|
"popitem($self, /, last=True)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
2017-01-24 18:30:04 -04:00
|
|
|
"Remove and return a (key, value) pair from the dictionary.\n"
|
2017-01-16 22:46:13 -04:00
|
|
|
"\n"
|
|
|
|
"Pairs are returned in LIFO order if last is true or FIFO order if false.");
|
|
|
|
|
|
|
|
#define ORDEREDDICT_POPITEM_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"popitem", (PyCFunction)OrderedDict_popitem, METH_FASTCALL|METH_KEYWORDS, OrderedDict_popitem__doc__},
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
OrderedDict_popitem_impl(PyODictObject *self, int last);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
OrderedDict_popitem(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2017-01-16 22:46:13 -04:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
static const char * const _keywords[] = {"last", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"|p:popitem", _keywords, 0};
|
|
|
|
int last = 1;
|
|
|
|
|
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
|
|
|
&last)) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
return_value = OrderedDict_popitem_impl(self, last);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(OrderedDict_move_to_end__doc__,
|
|
|
|
"move_to_end($self, /, key, last=True)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
2017-01-24 18:30:04 -04:00
|
|
|
"Move an existing element to the end (or beginning if last is false).\n"
|
2017-01-16 22:46:13 -04:00
|
|
|
"\n"
|
2017-01-24 18:30:04 -04:00
|
|
|
"Raise KeyError if the element does not exist.");
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
#define ORDEREDDICT_MOVE_TO_END_METHODDEF \
|
2017-07-03 15:20:15 -03:00
|
|
|
{"move_to_end", (PyCFunction)OrderedDict_move_to_end, METH_FASTCALL|METH_KEYWORDS, OrderedDict_move_to_end__doc__},
|
2017-01-16 22:46:13 -04:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
OrderedDict_move_to_end_impl(PyODictObject *self, PyObject *key, int last);
|
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
OrderedDict_move_to_end(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2017-01-16 22:46:13 -04:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
static const char * const _keywords[] = {"key", "last", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"O|p:move_to_end", _keywords, 0};
|
|
|
|
PyObject *key;
|
|
|
|
int last = 1;
|
|
|
|
|
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
|
|
|
&key, &last)) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
return_value = OrderedDict_move_to_end_impl(self, key, last);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2017-12-15 07:11:11 -04:00
|
|
|
/*[clinic end generated code: output=7f23d569eda2a558 input=a9049054013a1b77]*/
|