SF patch #1031667: Fold tuples of constants into a single constant
Example:
>>> import dis
>>> dis.dis(compile('1,2,3', '', 'eval'))
0 0 LOAD_CONST 3 ((1, 2, 3))
3 RETURN_VALUE R
Raymond Hettinger committed
2c31a058eb719da8908ea9d9c2f1b748ecc7a4ca
Parent: 0318a93