summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/tupleobject.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 64db806..4c6bbe7 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -446,6 +446,10 @@ tupleconcat(PyTupleObject *a, PyObject *bb)
Py_ssize_t i;
PyObject **src, **dest;
PyTupleObject *np;
+ if (Py_SIZE(a) == 0 && PyTuple_CheckExact(bb)) {
+ Py_INCREF(bb);
+ return bb;
+ }
if (!PyTuple_Check(bb)) {
PyErr_Format(PyExc_TypeError,
"can only concatenate tuple (not \"%.200s\") to tuple",
@@ -453,6 +457,10 @@ tupleconcat(PyTupleObject *a, PyObject *bb)
return NULL;
}
#define b ((PyTupleObject *)bb)
+ if (Py_SIZE(b) == 0 && PyTuple_CheckExact(a)) {
+ Py_INCREF(a);
+ return (PyObject *)a;
+ }
if (Py_SIZE(a) > PY_SSIZE_T_MAX - Py_SIZE(b))
return PyErr_NoMemory();
size = Py_SIZE(a) + Py_SIZE(b);