This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author JelleZijlstra
Recipients JelleZijlstra, benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov, ztane
Date 2016-04-24.01:34:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461461680.84.0.628482973836.issue26549@psf.upfronthosting.co.za>
In-reply-to
Content
This also affects co_consts, which includes constants that are no longer used by the optimized code:

In [8]: def f():
    return (1, 2, 3, 4, 5)
   ...: 

In [9]: f.func_code.co_consts
Out[9]: (None, 1, 2, 3, 4, 5, (1, 2, 3, 4, 5))

In [12]: dis.dis(f)
  2           0 LOAD_CONST               6 ((1, 2, 3, 4, 5))
              3 RETURN_VALUE
History
Date User Action Args
2016-04-24 01:34:41JelleZijlstrasetrecipients: + JelleZijlstra, brett.cannon, georg.brandl, ncoghlan, benjamin.peterson, yselivanov, ztane
2016-04-24 01:34:40JelleZijlstrasetmessageid: <1461461680.84.0.628482973836.issue26549@psf.upfronthosting.co.za>
2016-04-24 01:34:40JelleZijlstralinkissue26549 messages
2016-04-24 01:34:40JelleZijlstracreate