summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@gmail.com>2019-11-26 06:16:53 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-11-26 06:16:53 (GMT)
commit6dd9b64770af8905bef293c81d541eaaf8d8df52 (patch)
tree735a69a00b2e5b4574916a25c2b36a5611c572a9 /Python/compile.c
parente4db1f05e9a5828f6b287f99067362fa0e5732e8 (diff)
downloadcpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.zip
cpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.tar.gz
cpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.tar.bz2
bpo-38328: Speed up the creation time of constant list and set display. (GH-17114)
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c
index f56c015..98a4afa 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -197,6 +197,7 @@ static int compiler_visit_slice(struct compiler *, slice_ty,
expr_context_ty);
static int inplace_binop(struct compiler *, operator_ty);
+static int are_all_items_const(asdl_seq *, Py_ssize_t, Py_ssize_t);
static int expr_constant(expr_ty);
static int compiler_with(struct compiler *, stmt_ty, int);
@@ -3655,6 +3656,27 @@ starunpack_helper(struct compiler *c, asdl_seq *elts,
{
Py_ssize_t n = asdl_seq_LEN(elts);
Py_ssize_t i, nsubitems = 0, nseen = 0;
+ if (n > 2 && are_all_items_const(elts, 0, n)) {
+ PyObject *folded = PyTuple_New(n);
+ if (folded == NULL) {
+ return 0;
+ }
+ PyObject *val;
+ for (i = 0; i < n; i++) {
+ val = ((expr_ty)asdl_seq_GET(elts, i))->v.Constant.value;
+ Py_INCREF(val);
+ PyTuple_SET_ITEM(folded, i, val);
+ }
+ if (outer_op == BUILD_SET_UNPACK) {
+ Py_SETREF(folded, PyFrozenSet_New(folded));
+ if (folded == NULL) {
+ return 0;
+ }
+ }
+ ADDOP_LOAD_CONST_NEW(c, folded);
+ ADDOP_I(c, outer_op, 1);
+ return 1;
+ }
for (i = 0; i < n; i++) {
expr_ty elt = asdl_seq_GET(elts, i);
if (elt->kind == Starred_kind) {