Message287982
| 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? |
|