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 methane
Recipients berker.peksag, methane, minrk, ned.deily, serhiy.storchaka, vstinner, xiang.zhang
Date 2016-12-08.03:18:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481167091.16.0.422581805799.issue28147@psf.upfronthosting.co.za>
In-reply-to
Content
Which revision should I make patch based on? 3.6 branch? or 3.6rc1 tag?

After 3.6rc1 is tagged, I pushed optimization which contains same one line change.

https://hg.python.org/cpython/rev/d03562dcbb82

-#define ESTIMATE_SIZE(n)  (((n)*3) >> 1)
+#define ESTIMATE_SIZE(n)  (((n)*3+1) >> 1)
History
Date User Action Args
2016-12-08 03:18:11methanesetrecipients: + methane, vstinner, ned.deily, berker.peksag, serhiy.storchaka, minrk, xiang.zhang
2016-12-08 03:18:11methanesetmessageid: <1481167091.16.0.422581805799.issue28147@psf.upfronthosting.co.za>
2016-12-08 03:18:11methanelinkissue28147 messages
2016-12-08 03:18:10methanecreate