summaryrefslogtreecommitdiff
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-03-17 02:17:38 +0900
committerGitHub <noreply@github.com>2020-03-16 18:17:38 +0100
commit6ff79f65820031b219622faea8425edaec9a43f3 (patch)
tree3df97acc315423cdd84ad48beafbdacbb692965b /Objects/setobject.c
parent5f104d56fa10f88098338b3f1ea74bcbe6924ca9 (diff)
downloadcpython-git-6ff79f65820031b219622faea8425edaec9a43f3.tar.gz
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 43fa5d17fd..9f424b3646 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -2014,6 +2014,28 @@ set_init(PySetObject *self, PyObject *args, PyObject *kwds)
return set_update_internal(self, iterable);
}
+static PyObject*
+set_vectorcall(PyObject *type, PyObject * const*args,
+ size_t nargsf, PyObject *kwnames)
+{
+ assert(PyType_Check(type));
+
+ if (!_PyArg_NoKwnames("set", kwnames)) {
+ return NULL;
+ }
+
+ Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
+ if (!_PyArg_CheckPositional("set", nargs, 0, 1)) {
+ return NULL;
+ }
+
+ if (nargs) {
+ return make_new_set((PyTypeObject *)type, args[0]);
+ }
+
+ return make_new_set((PyTypeObject *)type, NULL);
+}
+
static PySequenceMethods set_as_sequence = {
set_len, /* sq_length */
0, /* sq_concat */
@@ -2162,6 +2184,7 @@ PyTypeObject PySet_Type = {
PyType_GenericAlloc, /* tp_alloc */
set_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
+ .tp_vectorcall = set_vectorcall,
};
/* frozenset object ********************************************************/