diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-03-16 17:17:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 17:17:38 (GMT) |
commit | 6ff79f65820031b219622faea8425edaec9a43f3 (patch) | |
tree | 3df97acc315423cdd84ad48beafbdacbb692965b /Objects/setobject.c | |
parent | 5f104d56fa10f88098338b3f1ea74bcbe6924ca9 (diff) | |
download | cpython-6ff79f65820031b219622faea8425edaec9a43f3.zip cpython-6ff79f65820031b219622faea8425edaec9a43f3.tar.gz cpython-6ff79f65820031b219622faea8425edaec9a43f3.tar.bz2 |
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r-- | Objects/setobject.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c index 43fa5d1..9f424b3 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 ********************************************************/ |