-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-37207: Use vectorcall for range() #18464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Objects/rangeobject.c
Outdated
range_vectorcall(PyTypeObject *type, PyObject *const *args, | ||
size_t nargsf, PyObject *kwnames) | ||
{ | ||
size_t nargs = PyVectorcall_NARGS(nargsf); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I didn't expect a size_t here. I opened an issue to discuss PyVectorcall_NARGS() return type: https://bugs.python.org/issue39611
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The return type already is Py_ssize_t. The bug was only in this patch.
(When Mark was originally writing the patch, there was a discussion of Py_ssize_t
vs. size_t
. Mark is a big proponent of the unsigned type, which is more correct. But also much less compatible with the existing codebase.)
Objects/rangeobject.c
Outdated
@@ -71,43 +72,35 @@ make_range_object(PyTypeObject *type, PyObject *start, | |||
range(0, 5, -1) | |||
*/ | |||
static PyObject * | |||
range_new(PyTypeObject *type, PyObject *args, PyObject *kw) | |||
range_from_array(PyTypeObject *type, PyObject *const *args, size_t num_args) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to use Py_ssize_t type for num_args. Usually, it's called "nargs", but I'm fine with "num_args" ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, Py_ssize_t
is more consistent.
But I find num_args
more descriptive, so I'll keep that name.
Codecov Report
@@ Coverage Diff @@
## master #18464 +/- ##
===========================================
+ Coverage 82.11% 83.20% +1.08%
===========================================
Files 1955 1571 -384
Lines 588958 414749 -174209
Branches 44428 44456 +28
===========================================
- Hits 483632 345077 -138555
+ Misses 95677 60024 -35653
+ Partials 9649 9648 -1
Continue to review full report at Codecov.
|
@@ -122,14 +115,14 @@ range_new(PyTypeObject *type, PyObject *args, PyObject *kw) | |||
return NULL; | |||
default: | |||
PyErr_Format(PyExc_TypeError, | |||
"range expected at most 3 arguments, got %zd", | |||
"range expected at most 3 arguments, got %zu", | |||
num_args); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be reset to %zd, since num_args is signed, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
This continues the
range()
part of #13930. The complete pull request is stalled on discussions around dicts, butrange()
should not be controversial. (And I plan to open PRs for other parts if this is merged.)On top of Mark's change, I unified
range_new
andrange_vectorcall
, which had a lot of duplicate code.https://bugs.python.org/issue37207
Automerge-Triggered-By: @encukou