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 vstinner
Recipients alecsandru.patrascu, gregory.p.smith, methane, vstinner
Date 2017-02-17.10:07:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487326049.25.0.0624441148219.issue26788@psf.upfronthosting.co.za>
In-reply-to
Content
+@unittest.skipIf(python_is_optimized(),
+                 "Python was compiled with optimizations")
 class PrettyPrintTests(DebuggerTests):

I disagree with this skip. I just compiled Python with "./configure" and GCC: these tests pass. Except of one buildbot, PGO is not used on buildbots nor Travis CI. I would prefer to keep running these tests by default, but only skip on PGO build.

By the way, would it maybe possible to find the missing information "<optimized out>" from other variables?
History
Date User Action Args
2017-02-17 10:07:29vstinnersetrecipients: + vstinner, gregory.p.smith, methane, alecsandru.patrascu
2017-02-17 10:07:29vstinnersetmessageid: <1487326049.25.0.0624441148219.issue26788@psf.upfronthosting.co.za>
2017-02-17 10:07:29vstinnerlinkissue26788 messages
2017-02-17 10:07:28vstinnercreate