]> granicus.if.org Git - python/commitdiff
Backed out changeset ea064ff3c10f
authorRaymond Hettinger <python@rcn.com>
Mon, 9 Jan 2017 15:39:46 +0000 (07:39 -0800)
committerRaymond Hettinger <python@rcn.com>
Mon, 9 Jan 2017 15:39:46 +0000 (07:39 -0800)
Modules/_functoolsmodule.c

index bc34c215b4382c5a3f3071f2e735da2ce8c7b681..62b45e98cb831aba1d7c0a03af37b2ace4e98d7d 100644 (file)
@@ -709,12 +709,6 @@ lru_cache_make_key(PyObject *args, PyObject *kwds, int typed)
 
     /* short path, key will match args anyway, which is a tuple */
     if (!typed && !kwds) {
-        if (PyTuple_GET_SIZE(args) == 1) {
-            /* Save space and improve speed by unwrapping 1-tuples */
-            key = PyTuple_GET_ITEM(args, 0);
-            Py_INCREF(key);
-            return key;
-        }
         Py_INCREF(args);
         return args;
     }