mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-26 06:35:15 +00:00
Fixed additional patterns: - _PyOpcode_* → _TyOpcode_* (all opcode metadata) - _PyUOpName → _TyUOpName - _PyFunction_* → _TyFunction_* - _PyListIterObject → _TyListIterObject - _Py_T_OBJECT → _Ty_T_OBJECT - Py_BEGIN_ALLOW_THREADS, Py_END_ALLOW_THREADS → Ty_* - PyDoc_STRVAR, PyDoc_STR → TyDoc_* - PyInterpreterState, PyThread_*, PyTime_t → Ty* - PyStructSequence_* → TyStructSequence_* - PyLockStatus → TyLockStatus - PyVarObject_HEAD_INIT → TyVarObject_HEAD_INIT - PyBaseExceptionObject → TyBaseExceptionObject - Fixed _PyExc_ → _TyExc_ in exception macros Build is progressing further. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
450 lines
13 KiB
C
Generated
450 lines
13 KiB
C
Generated
/*[clinic input]
|
|
preserve
|
|
[clinic start generated code]*/
|
|
|
|
#if defined(Ty_BUILD_CORE) && !defined(Ty_BUILD_CORE_MODULE)
|
|
# include "pycore_gc.h" // TyGC_Head
|
|
# include "pycore_runtime.h" // _Ty_ID()
|
|
#endif
|
|
#include "pycore_abstract.h" // _PyNumber_Index()
|
|
#include "pycore_modsupport.h" // _TyArg_UnpackKeywords()
|
|
|
|
TyDoc_STRVAR(_bisect_bisect_right__doc__,
|
|
"bisect_right($module, /, a, x, lo=0, hi=None, *, key=None)\n"
|
|
"--\n"
|
|
"\n"
|
|
"Return the index where to insert item x in list a, assuming a is sorted.\n"
|
|
"\n"
|
|
"The return value i is such that all e in a[:i] have e <= x, and all e in\n"
|
|
"a[i:] have e > x. So if x already appears in the list, a.insert(i, x) will\n"
|
|
"insert just after the rightmost x already there.\n"
|
|
"\n"
|
|
"Optional args lo (default 0) and hi (default len(a)) bound the\n"
|
|
"slice of a to be searched.\n"
|
|
"\n"
|
|
"A custom key function can be supplied to customize the sort order.");
|
|
|
|
#define _BISECT_BISECT_RIGHT_METHODDEF \
|
|
{"bisect_right", _PyCFunction_CAST(_bisect_bisect_right), METH_FASTCALL|METH_KEYWORDS, _bisect_bisect_right__doc__},
|
|
|
|
static Ty_ssize_t
|
|
_bisect_bisect_right_impl(TyObject *module, TyObject *a, TyObject *x,
|
|
Ty_ssize_t lo, Ty_ssize_t hi, TyObject *key);
|
|
|
|
static TyObject *
|
|
_bisect_bisect_right(TyObject *module, TyObject *const *args, Ty_ssize_t nargs, TyObject *kwnames)
|
|
{
|
|
TyObject *return_value = NULL;
|
|
#if defined(Ty_BUILD_CORE) && !defined(Ty_BUILD_CORE_MODULE)
|
|
|
|
#define NUM_KEYWORDS 5
|
|
static struct {
|
|
TyGC_Head _this_is_not_used;
|
|
PyObject_VAR_HEAD
|
|
Ty_hash_t ob_hash;
|
|
TyObject *ob_item[NUM_KEYWORDS];
|
|
} _kwtuple = {
|
|
.ob_base = TyVarObject_HEAD_INIT(&TyTuple_Type, NUM_KEYWORDS)
|
|
.ob_hash = -1,
|
|
.ob_item = { _Ty_LATIN1_CHR('a'), _Ty_LATIN1_CHR('x'), &_Ty_ID(lo), &_Ty_ID(hi), &_Ty_ID(key), },
|
|
};
|
|
#undef NUM_KEYWORDS
|
|
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
|
|
|
|
#else // !Ty_BUILD_CORE
|
|
# define KWTUPLE NULL
|
|
#endif // !Ty_BUILD_CORE
|
|
|
|
static const char * const _keywords[] = {"a", "x", "lo", "hi", "key", NULL};
|
|
static _TyArg_Parser _parser = {
|
|
.keywords = _keywords,
|
|
.fname = "bisect_right",
|
|
.kwtuple = KWTUPLE,
|
|
};
|
|
#undef KWTUPLE
|
|
TyObject *argsbuf[5];
|
|
Ty_ssize_t noptargs = nargs + (kwnames ? TyTuple_GET_SIZE(kwnames) : 0) - 2;
|
|
TyObject *a;
|
|
TyObject *x;
|
|
Ty_ssize_t lo = 0;
|
|
Ty_ssize_t hi = -1;
|
|
TyObject *key = Ty_None;
|
|
Ty_ssize_t _return_value;
|
|
|
|
args = _TyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
|
|
/*minpos*/ 2, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
|
|
if (!args) {
|
|
goto exit;
|
|
}
|
|
a = args[0];
|
|
x = args[1];
|
|
if (!noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
if (args[2]) {
|
|
{
|
|
Ty_ssize_t ival = -1;
|
|
TyObject *iobj = _PyNumber_Index(args[2]);
|
|
if (iobj != NULL) {
|
|
ival = TyLong_AsSsize_t(iobj);
|
|
Ty_DECREF(iobj);
|
|
}
|
|
if (ival == -1 && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
lo = ival;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
if (args[3]) {
|
|
if (!_Ty_convert_optional_to_ssize_t(args[3], &hi)) {
|
|
goto exit;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
skip_optional_pos:
|
|
if (!noptargs) {
|
|
goto skip_optional_kwonly;
|
|
}
|
|
key = args[4];
|
|
skip_optional_kwonly:
|
|
_return_value = _bisect_bisect_right_impl(module, a, x, lo, hi, key);
|
|
if ((_return_value == -1) && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
return_value = TyLong_FromSsize_t(_return_value);
|
|
|
|
exit:
|
|
return return_value;
|
|
}
|
|
|
|
TyDoc_STRVAR(_bisect_insort_right__doc__,
|
|
"insort_right($module, /, a, x, lo=0, hi=None, *, key=None)\n"
|
|
"--\n"
|
|
"\n"
|
|
"Insert item x in list a, and keep it sorted assuming a is sorted.\n"
|
|
"\n"
|
|
"If x is already in a, insert it to the right of the rightmost x.\n"
|
|
"\n"
|
|
"Optional args lo (default 0) and hi (default len(a)) bound the\n"
|
|
"slice of a to be searched.\n"
|
|
"\n"
|
|
"A custom key function can be supplied to customize the sort order.");
|
|
|
|
#define _BISECT_INSORT_RIGHT_METHODDEF \
|
|
{"insort_right", _PyCFunction_CAST(_bisect_insort_right), METH_FASTCALL|METH_KEYWORDS, _bisect_insort_right__doc__},
|
|
|
|
static TyObject *
|
|
_bisect_insort_right_impl(TyObject *module, TyObject *a, TyObject *x,
|
|
Ty_ssize_t lo, Ty_ssize_t hi, TyObject *key);
|
|
|
|
static TyObject *
|
|
_bisect_insort_right(TyObject *module, TyObject *const *args, Ty_ssize_t nargs, TyObject *kwnames)
|
|
{
|
|
TyObject *return_value = NULL;
|
|
#if defined(Ty_BUILD_CORE) && !defined(Ty_BUILD_CORE_MODULE)
|
|
|
|
#define NUM_KEYWORDS 5
|
|
static struct {
|
|
TyGC_Head _this_is_not_used;
|
|
PyObject_VAR_HEAD
|
|
Ty_hash_t ob_hash;
|
|
TyObject *ob_item[NUM_KEYWORDS];
|
|
} _kwtuple = {
|
|
.ob_base = TyVarObject_HEAD_INIT(&TyTuple_Type, NUM_KEYWORDS)
|
|
.ob_hash = -1,
|
|
.ob_item = { _Ty_LATIN1_CHR('a'), _Ty_LATIN1_CHR('x'), &_Ty_ID(lo), &_Ty_ID(hi), &_Ty_ID(key), },
|
|
};
|
|
#undef NUM_KEYWORDS
|
|
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
|
|
|
|
#else // !Ty_BUILD_CORE
|
|
# define KWTUPLE NULL
|
|
#endif // !Ty_BUILD_CORE
|
|
|
|
static const char * const _keywords[] = {"a", "x", "lo", "hi", "key", NULL};
|
|
static _TyArg_Parser _parser = {
|
|
.keywords = _keywords,
|
|
.fname = "insort_right",
|
|
.kwtuple = KWTUPLE,
|
|
};
|
|
#undef KWTUPLE
|
|
TyObject *argsbuf[5];
|
|
Ty_ssize_t noptargs = nargs + (kwnames ? TyTuple_GET_SIZE(kwnames) : 0) - 2;
|
|
TyObject *a;
|
|
TyObject *x;
|
|
Ty_ssize_t lo = 0;
|
|
Ty_ssize_t hi = -1;
|
|
TyObject *key = Ty_None;
|
|
|
|
args = _TyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
|
|
/*minpos*/ 2, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
|
|
if (!args) {
|
|
goto exit;
|
|
}
|
|
a = args[0];
|
|
x = args[1];
|
|
if (!noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
if (args[2]) {
|
|
{
|
|
Ty_ssize_t ival = -1;
|
|
TyObject *iobj = _PyNumber_Index(args[2]);
|
|
if (iobj != NULL) {
|
|
ival = TyLong_AsSsize_t(iobj);
|
|
Ty_DECREF(iobj);
|
|
}
|
|
if (ival == -1 && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
lo = ival;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
if (args[3]) {
|
|
if (!_Ty_convert_optional_to_ssize_t(args[3], &hi)) {
|
|
goto exit;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
skip_optional_pos:
|
|
if (!noptargs) {
|
|
goto skip_optional_kwonly;
|
|
}
|
|
key = args[4];
|
|
skip_optional_kwonly:
|
|
return_value = _bisect_insort_right_impl(module, a, x, lo, hi, key);
|
|
|
|
exit:
|
|
return return_value;
|
|
}
|
|
|
|
TyDoc_STRVAR(_bisect_bisect_left__doc__,
|
|
"bisect_left($module, /, a, x, lo=0, hi=None, *, key=None)\n"
|
|
"--\n"
|
|
"\n"
|
|
"Return the index where to insert item x in list a, assuming a is sorted.\n"
|
|
"\n"
|
|
"The return value i is such that all e in a[:i] have e < x, and all e in\n"
|
|
"a[i:] have e >= x. So if x already appears in the list, a.insert(i, x) will\n"
|
|
"insert just before the leftmost x already there.\n"
|
|
"\n"
|
|
"Optional args lo (default 0) and hi (default len(a)) bound the\n"
|
|
"slice of a to be searched.\n"
|
|
"\n"
|
|
"A custom key function can be supplied to customize the sort order.");
|
|
|
|
#define _BISECT_BISECT_LEFT_METHODDEF \
|
|
{"bisect_left", _PyCFunction_CAST(_bisect_bisect_left), METH_FASTCALL|METH_KEYWORDS, _bisect_bisect_left__doc__},
|
|
|
|
static Ty_ssize_t
|
|
_bisect_bisect_left_impl(TyObject *module, TyObject *a, TyObject *x,
|
|
Ty_ssize_t lo, Ty_ssize_t hi, TyObject *key);
|
|
|
|
static TyObject *
|
|
_bisect_bisect_left(TyObject *module, TyObject *const *args, Ty_ssize_t nargs, TyObject *kwnames)
|
|
{
|
|
TyObject *return_value = NULL;
|
|
#if defined(Ty_BUILD_CORE) && !defined(Ty_BUILD_CORE_MODULE)
|
|
|
|
#define NUM_KEYWORDS 5
|
|
static struct {
|
|
TyGC_Head _this_is_not_used;
|
|
PyObject_VAR_HEAD
|
|
Ty_hash_t ob_hash;
|
|
TyObject *ob_item[NUM_KEYWORDS];
|
|
} _kwtuple = {
|
|
.ob_base = TyVarObject_HEAD_INIT(&TyTuple_Type, NUM_KEYWORDS)
|
|
.ob_hash = -1,
|
|
.ob_item = { _Ty_LATIN1_CHR('a'), _Ty_LATIN1_CHR('x'), &_Ty_ID(lo), &_Ty_ID(hi), &_Ty_ID(key), },
|
|
};
|
|
#undef NUM_KEYWORDS
|
|
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
|
|
|
|
#else // !Ty_BUILD_CORE
|
|
# define KWTUPLE NULL
|
|
#endif // !Ty_BUILD_CORE
|
|
|
|
static const char * const _keywords[] = {"a", "x", "lo", "hi", "key", NULL};
|
|
static _TyArg_Parser _parser = {
|
|
.keywords = _keywords,
|
|
.fname = "bisect_left",
|
|
.kwtuple = KWTUPLE,
|
|
};
|
|
#undef KWTUPLE
|
|
TyObject *argsbuf[5];
|
|
Ty_ssize_t noptargs = nargs + (kwnames ? TyTuple_GET_SIZE(kwnames) : 0) - 2;
|
|
TyObject *a;
|
|
TyObject *x;
|
|
Ty_ssize_t lo = 0;
|
|
Ty_ssize_t hi = -1;
|
|
TyObject *key = Ty_None;
|
|
Ty_ssize_t _return_value;
|
|
|
|
args = _TyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
|
|
/*minpos*/ 2, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
|
|
if (!args) {
|
|
goto exit;
|
|
}
|
|
a = args[0];
|
|
x = args[1];
|
|
if (!noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
if (args[2]) {
|
|
{
|
|
Ty_ssize_t ival = -1;
|
|
TyObject *iobj = _PyNumber_Index(args[2]);
|
|
if (iobj != NULL) {
|
|
ival = TyLong_AsSsize_t(iobj);
|
|
Ty_DECREF(iobj);
|
|
}
|
|
if (ival == -1 && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
lo = ival;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
if (args[3]) {
|
|
if (!_Ty_convert_optional_to_ssize_t(args[3], &hi)) {
|
|
goto exit;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
skip_optional_pos:
|
|
if (!noptargs) {
|
|
goto skip_optional_kwonly;
|
|
}
|
|
key = args[4];
|
|
skip_optional_kwonly:
|
|
_return_value = _bisect_bisect_left_impl(module, a, x, lo, hi, key);
|
|
if ((_return_value == -1) && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
return_value = TyLong_FromSsize_t(_return_value);
|
|
|
|
exit:
|
|
return return_value;
|
|
}
|
|
|
|
TyDoc_STRVAR(_bisect_insort_left__doc__,
|
|
"insort_left($module, /, a, x, lo=0, hi=None, *, key=None)\n"
|
|
"--\n"
|
|
"\n"
|
|
"Insert item x in list a, and keep it sorted assuming a is sorted.\n"
|
|
"\n"
|
|
"If x is already in a, insert it to the left of the leftmost x.\n"
|
|
"\n"
|
|
"Optional args lo (default 0) and hi (default len(a)) bound the\n"
|
|
"slice of a to be searched.\n"
|
|
"\n"
|
|
"A custom key function can be supplied to customize the sort order.");
|
|
|
|
#define _BISECT_INSORT_LEFT_METHODDEF \
|
|
{"insort_left", _PyCFunction_CAST(_bisect_insort_left), METH_FASTCALL|METH_KEYWORDS, _bisect_insort_left__doc__},
|
|
|
|
static TyObject *
|
|
_bisect_insort_left_impl(TyObject *module, TyObject *a, TyObject *x,
|
|
Ty_ssize_t lo, Ty_ssize_t hi, TyObject *key);
|
|
|
|
static TyObject *
|
|
_bisect_insort_left(TyObject *module, TyObject *const *args, Ty_ssize_t nargs, TyObject *kwnames)
|
|
{
|
|
TyObject *return_value = NULL;
|
|
#if defined(Ty_BUILD_CORE) && !defined(Ty_BUILD_CORE_MODULE)
|
|
|
|
#define NUM_KEYWORDS 5
|
|
static struct {
|
|
TyGC_Head _this_is_not_used;
|
|
PyObject_VAR_HEAD
|
|
Ty_hash_t ob_hash;
|
|
TyObject *ob_item[NUM_KEYWORDS];
|
|
} _kwtuple = {
|
|
.ob_base = TyVarObject_HEAD_INIT(&TyTuple_Type, NUM_KEYWORDS)
|
|
.ob_hash = -1,
|
|
.ob_item = { _Ty_LATIN1_CHR('a'), _Ty_LATIN1_CHR('x'), &_Ty_ID(lo), &_Ty_ID(hi), &_Ty_ID(key), },
|
|
};
|
|
#undef NUM_KEYWORDS
|
|
#define KWTUPLE (&_kwtuple.ob_base.ob_base)
|
|
|
|
#else // !Ty_BUILD_CORE
|
|
# define KWTUPLE NULL
|
|
#endif // !Ty_BUILD_CORE
|
|
|
|
static const char * const _keywords[] = {"a", "x", "lo", "hi", "key", NULL};
|
|
static _TyArg_Parser _parser = {
|
|
.keywords = _keywords,
|
|
.fname = "insort_left",
|
|
.kwtuple = KWTUPLE,
|
|
};
|
|
#undef KWTUPLE
|
|
TyObject *argsbuf[5];
|
|
Ty_ssize_t noptargs = nargs + (kwnames ? TyTuple_GET_SIZE(kwnames) : 0) - 2;
|
|
TyObject *a;
|
|
TyObject *x;
|
|
Ty_ssize_t lo = 0;
|
|
Ty_ssize_t hi = -1;
|
|
TyObject *key = Ty_None;
|
|
|
|
args = _TyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser,
|
|
/*minpos*/ 2, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
|
|
if (!args) {
|
|
goto exit;
|
|
}
|
|
a = args[0];
|
|
x = args[1];
|
|
if (!noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
if (args[2]) {
|
|
{
|
|
Ty_ssize_t ival = -1;
|
|
TyObject *iobj = _PyNumber_Index(args[2]);
|
|
if (iobj != NULL) {
|
|
ival = TyLong_AsSsize_t(iobj);
|
|
Ty_DECREF(iobj);
|
|
}
|
|
if (ival == -1 && TyErr_Occurred()) {
|
|
goto exit;
|
|
}
|
|
lo = ival;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
if (args[3]) {
|
|
if (!_Ty_convert_optional_to_ssize_t(args[3], &hi)) {
|
|
goto exit;
|
|
}
|
|
if (!--noptargs) {
|
|
goto skip_optional_pos;
|
|
}
|
|
}
|
|
skip_optional_pos:
|
|
if (!noptargs) {
|
|
goto skip_optional_kwonly;
|
|
}
|
|
key = args[4];
|
|
skip_optional_kwonly:
|
|
return_value = _bisect_insort_left_impl(module, a, x, lo, hi, key);
|
|
|
|
exit:
|
|
return return_value;
|
|
}
|
|
/*[clinic end generated code: output=729385c6a23828ab input=a9049054013a1b77]*/
|