cpython: 3713f7de576d (original) (raw)

--- a/Modules/_operator.c +++ b/Modules/_operator.c @@ -1,6 +1,13 @@ #include "Python.h" +#include "clinic/_operator.c.h" + +/[clinic input] +module _operator +[clinic start generated code]/ +/[clinic end generated code: output=da39a3ee5e6b4b0d input=672ecf48487521e7]/ + PyDoc_STRVAR(operator_doc, "Operator interface.\n[](#l1.15) \n[](#l1.16) @@ -10,158 +17,702 @@ is equivalent to the expression x+y. Th used for special methods; variants without leading and trailing\n[](#l1.18) '__' are also provided for convenience."); -#define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { [](#l1.21)

+ +Return True if a is true, False otherwise. +[clinic start generated code]*/ + +static int +_operator_truth_impl(PyObject module, PyObject a) +/[clinic end generated code: output=eaf87767234fa5d7 input=bc74a4cd90235875]/ +{

+} -#define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.40)

+ +Same as a + b. +[clinic start generated code]*/ + +static PyObject * +_operator_add_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=8292984204f45164 input=5efe3bff856ac215]/ +{

+} + +/*[clinic input] +_operator.sub = _operator.add -#define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.64)

+} + +/[clinic input] +_operator.mul = _operator.add + +Same as a * b. +[clinic start generated code]/ -#define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.84)

+} + +/[clinic input] +_operator.matmul = _operator.add + +Same as a @ b. +[clinic start generated code]/ + +static PyObject * +_operator_matmul_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=a20d917eb35d0101 input=9ab304e37fb42dd4]/ +{

+} + +/[clinic input] +_operator.floordiv = _operator.add + +Same as a // b. +[clinic start generated code]/ -#define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.116)

+} + +/[clinic input] +_operator.truediv = _operator.add + +Same as a / b. +[clinic start generated code]/ -#define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { [](#l1.135)

+} + +/[clinic input] +_operator.mod = _operator.add + +Same as a % b. +[clinic start generated code]/ + +static PyObject * +_operator_mod_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=9519822f0bbec166 input=102e19b422342ac1]/ +{

+} + +/*[clinic input] +_operator.neg +

-#define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.165)

+} + +/[clinic input] +_operator.pos = _operator.neg + +Same as +a. +[clinic start generated code]/ -#define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.186)

+} + +/[clinic input] +_operator.abs = _operator.neg + +Same as abs(a). +[clinic start generated code]/ -#define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.204)

+} + +/[clinic input] +_operator.inv = _operator.neg + +Same as ~a. +[clinic start generated code]/ -#define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { [](#l1.222)

+} + +/[clinic input] +_operator.invert = _operator.neg + +Same as ~a. +[clinic start generated code]/ + +static PyObject * +_operator_invert(PyObject module, PyObject a) +/[clinic end generated code: output=406b5aa030545fcc input=7f2d607176672e55]/ +{

+} + +/[clinic input] +_operator.lshift = _operator.add + +Same as a << b. +[clinic start generated code]/ + +static PyObject * +_operator_lshift_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=37f7e52c41435bd8 input=746e8a160cbbc9eb]/ +{

+} + +/[clinic input] +_operator.rshift = _operator.add + +Same as a >> b. +[clinic start generated code]/ + +static PyObject * +_operator_rshift_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=4593c7ef30ec2ee3 input=d2c85bb5a64504c2]/ +{

+} + +/[clinic input] +operator.not = _operator.truth + +Same as not a. +[clinic start generated code]/ + +static int +_operator_not__impl(PyObject module, PyObject a) +/[clinic end generated code: output=743f9c24a09759ef input=854156d50804d9b8]/ +{

+} + +/[clinic input] +operator.and = _operator.add + +Same as a & b. +[clinic start generated code]/ + +static PyObject * +_operator_and__impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=93c4fe88f7b76d9e input=4f3057c90ec4c99f]/ +{

+} + +/[clinic input] +_operator.xor = _operator.add + +Same as a ^ b. +[clinic start generated code]/ -spami(truth , PyObject_IsTrue) -spam2(op_add , PyNumber_Add) -spam2(op_sub , PyNumber_Subtract) -spam2(op_mul , PyNumber_Multiply) -spam2(op_matmul , PyNumber_MatrixMultiply) -spam2(op_floordiv , PyNumber_FloorDivide) -spam2(op_truediv , PyNumber_TrueDivide) -spam2(op_mod , PyNumber_Remainder) -spam1(op_neg , PyNumber_Negative) -spam1(op_pos , PyNumber_Positive) -spam1(op_abs , PyNumber_Absolute) -spam1(op_inv , PyNumber_Invert) -spam1(op_invert , PyNumber_Invert) -spam2(op_lshift , PyNumber_Lshift) -spam2(op_rshift , PyNumber_Rshift) -spami(op_not_ , PyObject_Not) -spam2(op_and_ , PyNumber_And) -spam2(op_xor , PyNumber_Xor) -spam2(op_or_ , PyNumber_Or) -spam2(op_iadd , PyNumber_InPlaceAdd) -spam2(op_isub , PyNumber_InPlaceSubtract) -spam2(op_imul , PyNumber_InPlaceMultiply) -spam2(op_imatmul , PyNumber_InPlaceMatrixMultiply) -spam2(op_ifloordiv , PyNumber_InPlaceFloorDivide) -spam2(op_itruediv , PyNumber_InPlaceTrueDivide) -spam2(op_imod , PyNumber_InPlaceRemainder) -spam2(op_ilshift , PyNumber_InPlaceLshift) -spam2(op_irshift , PyNumber_InPlaceRshift) -spam2(op_iand , PyNumber_InPlaceAnd) -spam2(op_ixor , PyNumber_InPlaceXor) -spam2(op_ior , PyNumber_InPlaceOr) -spam2(op_concat , PySequence_Concat) -spam2(op_iconcat , PySequence_InPlaceConcat) -spami2b(op_contains , PySequence_Contains) -spamn2(indexOf , PySequence_Index) -spamn2(countOf , PySequence_Count) -spam2(op_getitem , PyObject_GetItem) -spam2n(op_delitem , PyObject_DelItem) -spam3n(op_setitem , PyObject_SetItem) -spamrc(op_lt , Py_LT) -spamrc(op_le , Py_LE) -spamrc(op_eq , Py_EQ) -spamrc(op_ne , Py_NE) -spamrc(op_gt , Py_GT) -spamrc(op_ge , Py_GE) +static PyObject * +_operator_xor_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=b24cd8b79fde0004 input=3c5cfa7253d808dd]/ +{

+} + +/[clinic input] +operator.or = _operator.add + +Same as a | b. +[clinic start generated code]/ + +static PyObject * +_operator_or__impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=58024867b8d90461 input=b40c6c44f7c79c09]/ +{

+} + +/[clinic input] +_operator.iadd = _operator.add + +Same as a += b. +[clinic start generated code]/ + +static PyObject * +_operator_iadd_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=07dc627832526eb5 input=d22a91c07ac69227]/ +{

+} + +/[clinic input] +_operator.isub = _operator.add + +Same as a -= b. +[clinic start generated code]/ -static PyObject* -op_pow(PyObject *s, PyObject *a) +static PyObject * +_operator_isub_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=4513467d23b5e0b1 input=4591b00d0a0ccafd]/ +{

+} + +/*[clinic input] +_operator.imul = _operator.add + +Same as a = b. +[clinic start generated code]/ + +static PyObject * +_operator_imul_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=5e87dacd19a71eab input=0e01fb8631e1b76f]/ {

+} + +/[clinic input] +_operator.imatmul = _operator.add + +Same as a @= b. +[clinic start generated code]/ + +static PyObject * +_operator_imatmul_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=d603cbdf716ce519 input=bb614026372cd542]/ +{

+} + +/[clinic input] +_operator.ifloordiv = _operator.add + +Same as a //= b. +[clinic start generated code]/ + +static PyObject * +_operator_ifloordiv_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=535336048c681794 input=9df3b5021cff4ca1]/ +{

} -static PyObject* -op_ipow(PyObject s, PyObject a) +/[clinic input] +_operator.itruediv = _operator.add + +Same as a /= b. +[clinic start generated code]/ + +static PyObject * +_operator_itruediv_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=28017fbd3563952f input=9a1ee01608f5f590]/ +{

+} + +/[clinic input] +_operator.imod = _operator.add + +Same as a %= b. +[clinic start generated code]/ + +static PyObject * +_operator_imod_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=f7c540ae0fc70904 input=d0c384a3ce38e1dd]/ +{

+} + +/[clinic input] +_operator.ilshift = _operator.add + +Same as a <<= b. +[clinic start generated code]/ + +static PyObject * +_operator_ilshift_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=e73a8fee1ac18749 input=e21b6b310f54572e]/ +{

+} + +/[clinic input] +_operator.irshift = _operator.add + +Same as a >>= b. +[clinic start generated code]/ + +static PyObject * +_operator_irshift_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=97f2af6b5ff2ed81 input=6778dbd0f6e1ec16]/ +{

+} + +/[clinic input] +_operator.iand = _operator.add + +Same as a &= b. +[clinic start generated code]/ + +static PyObject * +_operator_iand_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=4599e9d40cbf7d00 input=71dfd8e70c156a7b]/ +{

+} + +/[clinic input] +_operator.ixor = _operator.add + +Same as a ^= b. +[clinic start generated code]/ + +static PyObject * +_operator_ixor_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=5ff881766872be03 input=695c32bec0604d86]/ {

+} + +/[clinic input] +_operator.ior = _operator.add + +Same as a |= b. +[clinic start generated code]/ + +static PyObject * +_operator_ior_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=48aac319445bf759 input=8f01d03eda9920cf]/ +{

+} + +/[clinic input] +_operator.concat = _operator.add + +Same as a + b, for a and b sequences. +[clinic start generated code]/ + +static PyObject * +_operator_concat_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=80028390942c5f11 input=8544ccd5341a3658]/ +{

+} + +/[clinic input] +_operator.iconcat = _operator.add + +Same as a += b, for a and b sequences. +[clinic start generated code]/ + +static PyObject * +_operator_iconcat_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=3ea0a162ebb2e26d input=8f5fe5722fcd837e]/ +{

+} + +/*[clinic input] +_operator.contains -> bool +

+ +Same as b in a (note reversed operands). +[clinic start generated code]*/ + +static int +_operator_contains_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=413b4dbe82b6ffc1 input=9122a69b505fde13]/ +{

+} + +/*[clinic input] +_operator.indexOf -> Py_ssize_t +

+ +Return the first index of b in a. +[clinic start generated code]*/ + +static Py_ssize_t +_operator_indexOf_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=c6226d8e0fb60fa6 input=8be2e43b6a6fffe3]/ +{

+} + +/[clinic input] +_operator.countOf = _operator.indexOf + +Return the number of times b occurs in a. +[clinic start generated code]/ + +static Py_ssize_t +_operator_countOf_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=9e1623197daf3382 input=0c3a2656add252db]/ +{

} +/*[clinic input] +_operator.getitem +

+ +Same as a[b]. +[clinic start generated code]*/ + static PyObject * -op_index(PyObject *s, PyObject *a) +_operator_getitem_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=6c8d8101a676e594 input=6682797320e48845]/ +{

+} + +/*[clinic input] +_operator.setitem +

+ +Same as a[b] = c. +[clinic start generated code]*/ + +static PyObject * +_operator_setitem_impl(PyObject *module, PyObject *a, PyObject *b,

+/[clinic end generated code: output=1324f9061ae99e25 input=ceaf453c4d3a58df]/ +{

+} + +/[clinic input] +_operator.delitem = _operator.getitem + +Same as del a[b]. +[clinic start generated code]/ + +static PyObject * +_operator_delitem_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=db18f61506295799 input=991bec56a0d3ec7f]/ +{

+} + +/*[clinic input] +_operator.eq +

+ +Same as a == b. +[clinic start generated code]*/ + +static PyObject * +_operator_eq_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=8d7d46ed4135677c input=586fca687a95a83f]/ +{

+} + +/[clinic input] +_operator.ne = _operator.eq + +Same as a != b. +[clinic start generated code]/ + +static PyObject * +_operator_ne_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=c99bd0c3a4c01297 input=5d88f23d35e9abac]/ +{

+} + +/[clinic input] +_operator.lt = _operator.eq + +Same as a < b. +[clinic start generated code]/ + +static PyObject * +_operator_lt_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=082d7c45c440e535 input=34a59ad6d39d3a2b]/ +{

+} + +/[clinic input] +_operator.le = _operator.eq + +Same as a <= b. +[clinic start generated code]/ + +static PyObject * +_operator_le_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=00970a2923d0ae17 input=b812a7860a0bef44]/ +{

+} + +/[clinic input] +_operator.gt = _operator.eq + +Same as a > b. +[clinic start generated code]/ + +static PyObject * +_operator_gt_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=8d373349ecf25641 input=9bdb45b995ada35b]/ +{

+} + +/[clinic input] +_operator.ge = _operator.eq + +Same as a >= b. +[clinic start generated code]/ + +static PyObject * +_operator_ge_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=7ce3882256d4b137 input=cf1dc4a5ca9c35f5]/ +{

+} + +/[clinic input] +_operator.pow = _operator.add + +Same as a ** b. +[clinic start generated code]/ + +static PyObject * +_operator_pow_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=09e668ad50036120 input=690b40f097ab1637]/ +{

+} + +/*[clinic input] +_operator.ipow = _operator.add + +Same as a **= b. +[clinic start generated code]*/ + +static PyObject * +_operator_ipow_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=7189ff4d4367c808 input=f00623899d07499a]/ +{

+} + +/*[clinic input] +_operator.index +

+ +Same as a.index() +[clinic start generated code]*/ + +static PyObject +_operator_index(PyObject module, PyObject a) +/[clinic end generated code: output=d972b0764ac305fc input=6f54d50ea64a579c]/ { return PyNumber_Index(a); } -static PyObject -is_(PyObject s, PyObject a) +/[clinic input] +operator.is = _operator.add + +Same as a is b. +[clinic start generated code]/ + +static PyObject * +_operator_is__impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=bcd47a402e482e1d input=5fa9b97df03c427f]/ {

-static PyObject* -is_not(PyObject s, PyObject a) +/[clinic input] +_operator.is_not = _operator.add + +Same as a is not b. +[clinic start generated code]/ + +static PyObject * +_operator_is_not_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=491a1f2f81f6c7f9 input=5a93f7e1a93535f1]/ {

-#undef spam1 -#undef spam2 -#undef spam1o -#undef spam1o - /* compare_digest **********************************************************/ / @@ -210,53 +761,52 @@ static int return (result == 0); } -PyDoc_STRVAR(length_hint__doc__, -"length_hint(obj, default=0) -> int\n" -"Return an estimate of the number of items in obj.\n" -"This is useful for presizing containers when building from an\n" -"iterable.\n" -"\n" -"If the object supports len(), the result will be\n" -"exact. Otherwise, it may over- or under-estimate by an\n" -"arbitrary amount. The result will be an integer >= 0."); +/[clinic input] +_operator.length_hint -> Py_ssize_t +

+ +Return an estimate of the number of items in obj. + +This is useful for presizing containers when building from an iterable. -static PyObject *length_hint(PyObject *self, PyObject args) +If the object supports len(), the result will be exact. +Otherwise, it may over- or under-estimate by an arbitrary amount. +The result will be an integer >= 0. +[clinic start generated code]/ + +static Py_ssize_t +_operator_length_hint_impl(PyObject *module, PyObject *obj,

+/[clinic end generated code: output=01d469edc1d612ad input=65ed29f04401e96a]/ {

} +/[clinic input] +_operator.compare_digest = operator.eq -PyDoc_STRVAR(compare_digest__doc, -"compare_digest(a, b) -> bool\n" -"\n" -"Return 'a == b'. This function uses an approach designed to prevent\n" -"timing analysis, making it appropriate for cryptography.\n" -"a and b must both be of the same type: either str (ASCII only),\n" -"or any bytes-like object.\n" -"\n" -"Note: If a and b are of different lengths, or if an error occurs,\n" -"a timing attack could theoretically reveal information about the\n" -"types and lengths of a and b--but not their values.\n"); +Return 'a == b'. + +This function uses an approach designed to prevent +timing analysis, making it appropriate for cryptography. + +a and b must both be of the same type: either str (ASCII only), +or any bytes-like object. -static PyObject -compare_digest(PyObject *self, PyObject args) +Note: If a and b are of different lengths, or if an error occurs, +a timing attack could theoretically reveal information about the +types and lengths of a and b--but not their values. +[clinic start generated code]/ + +static PyObject * +_operator__compare_digest_impl(PyObject *module, PyObject a, PyObject b) +/[clinic end generated code: output=11d452bdd3a23cbc input=9ac7e2c4e30bc356]/ {

- /* ASCII unicode string */ if(PyUnicode_Check(a) && PyUnicode_Check(b)) { if (PyUnicode_READY(a) == -1 || PyUnicode_READY(b) == -1) { @@ -323,78 +873,60 @@ compare_digest(PyObject self, PyObject / operator methods **********************************************************/ -#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, -#define spam2(OP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, -#define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, -#define spam2o(OP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, - static struct PyMethodDef operator_methods[] = { -spam1o(truth,

@@ -583,6 +1116,7 @@ typedef struct { static PyTypeObject attrgetter_type; +/* AC 3.5: treats first argument as an iterable, otherwise uses *args */ static PyObject * attrgetter_new(PyTypeObject *type, PyObject *args, PyObject kwds) { @@ -927,6 +1461,7 @@ typedef struct { static PyTypeObject methodcaller_type; +/ AC 3.5: variable number of arguments, not currently support by AC */ static PyObject * methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds) {

new file mode 100644 --- /dev/null +++ b/Modules/clinic/operator.c.h @@ -0,0 +1,1648 @@ +/[clinic input] +preserve +[clinic start generated code]/ + +PyDoc_STRVAR(operator_truth__doc, +"truth($module, a, /)\n" +"--\n" +"\n" +"Return True if a is true, False otherwise."); + +#define _OPERATOR_TRUTH_METHODDEF [](#l2.15)

+ +static int +_operator_truth_impl(PyObject *module, PyObject *a); + +static PyObject * +_operator_truth(PyObject *module, PyObject *a) +{

+

+ +exit:

+} + +PyDoc_STRVAR(operator_add__doc_, +"add($module, a, b, /)\n" +"--\n" +"\n" +"Same as a + b."); + +#define _OPERATOR_ADD_METHODDEF [](#l2.43)

+ +static PyObject * +_operator_add_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_add(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_sub__doc_, +"sub($module, a, b, /)\n" +"--\n" +"\n" +"Same as a - b."); + +#define _OPERATOR_SUB_METHODDEF [](#l2.77)

+ +static PyObject * +_operator_sub_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_sub(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_mul__doc_, +"mul($module, a, b, /)\n" +"--\n" +"\n" +"Same as a * b."); + +#define _OPERATOR_MUL_METHODDEF [](#l2.111)

+ +static PyObject * +_operator_mul_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_mul(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_matmul__doc_, +"matmul($module, a, b, /)\n" +"--\n" +"\n" +"Same as a @ b."); + +#define _OPERATOR_MATMUL_METHODDEF [](#l2.145)

+ +static PyObject * +_operator_matmul_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_matmul(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_floordiv__doc_, +"floordiv($module, a, b, /)\n" +"--\n" +"\n" +"Same as a // b."); + +#define _OPERATOR_FLOORDIV_METHODDEF [](#l2.179)

+ +static PyObject * +_operator_floordiv_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_floordiv(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_truediv__doc_, +"truediv($module, a, b, /)\n" +"--\n" +"\n" +"Same as a / b."); + +#define _OPERATOR_TRUEDIV_METHODDEF [](#l2.213)

+ +static PyObject * +_operator_truediv_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_truediv(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_mod__doc_, +"mod($module, a, b, /)\n" +"--\n" +"\n" +"Same as a % b."); + +#define _OPERATOR_MOD_METHODDEF [](#l2.247)

+ +static PyObject * +_operator_mod_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_mod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_neg__doc_, +"neg($module, a, /)\n" +"--\n" +"\n" +"Same as -a."); + +#define _OPERATOR_NEG_METHODDEF [](#l2.281)

+ +PyDoc_STRVAR(operator_pos__doc_, +"pos($module, a, /)\n" +"--\n" +"\n" +"Same as +a."); + +#define _OPERATOR_POS_METHODDEF [](#l2.290)

+ +PyDoc_STRVAR(operator_abs__doc_, +"abs($module, a, /)\n" +"--\n" +"\n" +"Same as abs(a)."); + +#define _OPERATOR_ABS_METHODDEF [](#l2.299)

+ +PyDoc_STRVAR(operator_inv__doc_, +"inv($module, a, /)\n" +"--\n" +"\n" +"Same as ~a."); + +#define _OPERATOR_INV_METHODDEF [](#l2.308)

+ +PyDoc_STRVAR(operator_invert__doc_, +"invert($module, a, /)\n" +"--\n" +"\n" +"Same as ~a."); + +#define _OPERATOR_INVERT_METHODDEF [](#l2.317)

+ +PyDoc_STRVAR(operator_lshift__doc_, +"lshift($module, a, b, /)\n" +"--\n" +"\n" +"Same as a << b."); + +#define _OPERATOR_LSHIFT_METHODDEF [](#l2.326)

+ +static PyObject * +_operator_lshift_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_lshift(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_rshift__doc_, +"rshift($module, a, b, /)\n" +"--\n" +"\n" +"Same as a >> b."); + +#define _OPERATOR_RSHIFT_METHODDEF [](#l2.360)

+ +static PyObject * +_operator_rshift_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_rshift(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_not___doc, +"not($module, a, /)\n" +"--\n" +"\n" +"Same as not a."); + +#define _OPERATOR_NOT__METHODDEF [](#l2.394)

+ +static int +_operator_not__impl(PyObject *module, PyObject *a); + +static PyObject * +operator_not(PyObject *module, PyObject *a) +{

+

+ +exit:

+} + +PyDoc_STRVAR(operator_and___doc, +"and($module, a, b, /)\n" +"--\n" +"\n" +"Same as a & b."); + +#define _OPERATOR_AND__METHODDEF [](#l2.422)

+ +static PyObject * +_operator_and__impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +operator_and(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_xor__doc_, +"xor($module, a, b, /)\n" +"--\n" +"\n" +"Same as a ^ b."); + +#define _OPERATOR_XOR_METHODDEF [](#l2.456)

+ +static PyObject * +_operator_xor_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_xor(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_or___doc, +"or($module, a, b, /)\n" +"--\n" +"\n" +"Same as a | b."); + +#define _OPERATOR_OR__METHODDEF [](#l2.490)

+ +static PyObject * +_operator_or__impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +operator_or(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_iadd__doc_, +"iadd($module, a, b, /)\n" +"--\n" +"\n" +"Same as a += b."); + +#define _OPERATOR_IADD_METHODDEF [](#l2.524)

+ +static PyObject * +_operator_iadd_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_iadd(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_isub__doc_, +"isub($module, a, b, /)\n" +"--\n" +"\n" +"Same as a -= b."); + +#define _OPERATOR_ISUB_METHODDEF [](#l2.558)

+ +static PyObject * +_operator_isub_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_isub(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_imul__doc_, +"imul($module, a, b, /)\n" +"--\n" +"\n" +"Same as a *= b."); + +#define _OPERATOR_IMUL_METHODDEF [](#l2.592)

+ +static PyObject * +_operator_imul_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_imul(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_imatmul__doc_, +"imatmul($module, a, b, /)\n" +"--\n" +"\n" +"Same as a @= b."); + +#define _OPERATOR_IMATMUL_METHODDEF [](#l2.626)

+ +static PyObject * +_operator_imatmul_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_imatmul(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ifloordiv__doc_, +"ifloordiv($module, a, b, /)\n" +"--\n" +"\n" +"Same as a //= b."); + +#define _OPERATOR_IFLOORDIV_METHODDEF [](#l2.660)

+ +static PyObject * +_operator_ifloordiv_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ifloordiv(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_itruediv__doc_, +"itruediv($module, a, b, /)\n" +"--\n" +"\n" +"Same as a /= b."); + +#define _OPERATOR_ITRUEDIV_METHODDEF [](#l2.694)

+ +static PyObject * +_operator_itruediv_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_itruediv(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_imod__doc_, +"imod($module, a, b, /)\n" +"--\n" +"\n" +"Same as a %= b."); + +#define _OPERATOR_IMOD_METHODDEF [](#l2.728)

+ +static PyObject * +_operator_imod_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_imod(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ilshift__doc_, +"ilshift($module, a, b, /)\n" +"--\n" +"\n" +"Same as a <<= b."); + +#define _OPERATOR_ILSHIFT_METHODDEF [](#l2.762)

+ +static PyObject * +_operator_ilshift_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ilshift(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_irshift__doc_, +"irshift($module, a, b, /)\n" +"--\n" +"\n" +"Same as a >>= b."); + +#define _OPERATOR_IRSHIFT_METHODDEF [](#l2.796)

+ +static PyObject * +_operator_irshift_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_irshift(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_iand__doc_, +"iand($module, a, b, /)\n" +"--\n" +"\n" +"Same as a &= b."); + +#define _OPERATOR_IAND_METHODDEF [](#l2.830)

+ +static PyObject * +_operator_iand_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_iand(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ixor__doc_, +"ixor($module, a, b, /)\n" +"--\n" +"\n" +"Same as a ^= b."); + +#define _OPERATOR_IXOR_METHODDEF [](#l2.864)

+ +static PyObject * +_operator_ixor_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ixor(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ior__doc_, +"ior($module, a, b, /)\n" +"--\n" +"\n" +"Same as a |= b."); + +#define _OPERATOR_IOR_METHODDEF [](#l2.898)

+ +static PyObject * +_operator_ior_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ior(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_concat__doc_, +"concat($module, a, b, /)\n" +"--\n" +"\n" +"Same as a + b, for a and b sequences."); + +#define _OPERATOR_CONCAT_METHODDEF [](#l2.932)

+ +static PyObject * +_operator_concat_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_concat(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_iconcat__doc_, +"iconcat($module, a, b, /)\n" +"--\n" +"\n" +"Same as a += b, for a and b sequences."); + +#define _OPERATOR_ICONCAT_METHODDEF [](#l2.966)

+ +static PyObject * +_operator_iconcat_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_iconcat(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_contains__doc_, +"contains($module, a, b, /)\n" +"--\n" +"\n" +"Same as b in a (note reversed operands)."); + +#define _OPERATOR_CONTAINS_METHODDEF [](#l2.1000)

+ +static int +_operator_contains_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_contains(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_indexOf__doc_, +"indexOf($module, a, b, /)\n" +"--\n" +"\n" +"Return the first index of b in a."); + +#define _OPERATOR_INDEXOF_METHODDEF [](#l2.1039)

+ +static Py_ssize_t +_operator_indexOf_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_indexOf(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_countOf__doc_, +"countOf($module, a, b, /)\n" +"--\n" +"\n" +"Return the number of times b occurs in a."); + +#define _OPERATOR_COUNTOF_METHODDEF [](#l2.1078)

+ +static Py_ssize_t +_operator_countOf_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_countOf(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_getitem__doc_, +"getitem($module, a, b, /)\n" +"--\n" +"\n" +"Same as a[b]."); + +#define _OPERATOR_GETITEM_METHODDEF [](#l2.1117)

+ +static PyObject * +_operator_getitem_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_getitem(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_setitem__doc_, +"setitem($module, a, b, c, /)\n" +"--\n" +"\n" +"Same as a[b] = c."); + +#define _OPERATOR_SETITEM_METHODDEF [](#l2.1151)

+ +static PyObject * +_operator_setitem_impl(PyObject *module, PyObject *a, PyObject *b,

+ +static PyObject * +_operator_setitem(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_delitem__doc_, +"delitem($module, a, b, /)\n" +"--\n" +"\n" +"Same as del a[b]."); + +#define _OPERATOR_DELITEM_METHODDEF [](#l2.1187)

+ +static PyObject * +_operator_delitem_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_delitem(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_eq__doc_, +"eq($module, a, b, /)\n" +"--\n" +"\n" +"Same as a == b."); + +#define _OPERATOR_EQ_METHODDEF [](#l2.1221)

+ +static PyObject * +_operator_eq_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_eq(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ne__doc_, +"ne($module, a, b, /)\n" +"--\n" +"\n" +"Same as a != b."); + +#define _OPERATOR_NE_METHODDEF [](#l2.1255)

+ +static PyObject * +_operator_ne_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ne(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_lt__doc_, +"lt($module, a, b, /)\n" +"--\n" +"\n" +"Same as a < b."); + +#define _OPERATOR_LT_METHODDEF [](#l2.1289)

+ +static PyObject * +_operator_lt_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_lt(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_le__doc_, +"le($module, a, b, /)\n" +"--\n" +"\n" +"Same as a <= b."); + +#define _OPERATOR_LE_METHODDEF [](#l2.1323)

+ +static PyObject * +_operator_le_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_le(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_gt__doc_, +"gt($module, a, b, /)\n" +"--\n" +"\n" +"Same as a > b."); + +#define _OPERATOR_GT_METHODDEF [](#l2.1357)

+ +static PyObject * +_operator_gt_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_gt(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ge__doc_, +"ge($module, a, b, /)\n" +"--\n" +"\n" +"Same as a >= b."); + +#define _OPERATOR_GE_METHODDEF [](#l2.1391)

+ +static PyObject * +_operator_ge_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ge(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_pow__doc_, +"pow($module, a, b, /)\n" +"--\n" +"\n" +"Same as a ** b."); + +#define _OPERATOR_POW_METHODDEF [](#l2.1425)

+ +static PyObject * +_operator_pow_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_pow(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_ipow__doc_, +"ipow($module, a, b, /)\n" +"--\n" +"\n" +"Same as a **= b."); + +#define _OPERATOR_IPOW_METHODDEF [](#l2.1459)

+ +static PyObject * +_operator_ipow_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_ipow(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_index__doc_, +"index($module, a, /)\n" +"--\n" +"\n" +"Same as a.index()"); + +#define _OPERATOR_INDEX_METHODDEF [](#l2.1493)

+ +PyDoc_STRVAR(operator_is___doc, +"is($module, a, b, /)\n" +"--\n" +"\n" +"Same as a is b."); + +#define _OPERATOR_IS__METHODDEF [](#l2.1502)

+ +static PyObject * +_operator_is__impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +operator_is(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_is_not__doc_, +"is_not($module, a, b, /)\n" +"--\n" +"\n" +"Same as a is not b."); + +#define _OPERATOR_IS_NOT_METHODDEF [](#l2.1536)

+ +static PyObject * +_operator_is_not_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator_is_not(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator_length_hint__doc_, +"length_hint($module, obj, default=0, /)\n" +"--\n" +"\n" +"Return an estimate of the number of items in obj.\n" +"\n" +"This is useful for presizing containers when building from an iterable.\n" +"\n" +"If the object supports len(), the result will be exact.\n" +"Otherwise, it may over- or under-estimate by an arbitrary amount.\n" +"The result will be an integer >= 0."); + +#define _OPERATOR_LENGTH_HINT_METHODDEF [](#l2.1576)

+ +static Py_ssize_t +_operator_length_hint_impl(PyObject *module, PyObject *obj,

+ +static PyObject * +_operator_length_hint(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} + +PyDoc_STRVAR(operator__compare_digest__doc_, +"_compare_digest($module, a, b, /)\n" +"--\n" +"\n" +"Return 'a == b'.\n" +"\n" +"This function uses an approach designed to prevent\n" +"timing analysis, making it appropriate for cryptography.\n" +"\n" +"a and b must both be of the same type: either str (ASCII only),\n" +"or any bytes-like object.\n" +"\n" +"Note: If a and b are of different lengths, or if an error occurs,\n" +"a timing attack could theoretically reveal information about the\n" +"types and lengths of a and b--but not their values."); + +#define _OPERATOR__COMPARE_DIGEST_METHODDEF [](#l2.1625)

+ +static PyObject * +_operator__compare_digest_impl(PyObject *module, PyObject *a, PyObject *b); + +static PyObject * +_operator__compare_digest(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +{

+

+

+ +exit:

+} +/[clinic end generated code: output=c030b6747fddd9c6 input=a9049054013a1b77]/