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 pitrou
Recipients pitrou, vstinner
Date 2010-01-14.12:32:55
SpamBayes Score 0.07062716
Marked as misclassified No
Message-id <1263472376.91.0.856900856571.issue7701@psf.upfronthosting.co.za>
In-reply-to
Content
>>> [len(binascii.b2a_uu("x"*bin_len)) for bin_len in xrange(10)]
    [2, 6, 6, 6, 10, 10, 10, 14, 14, 14]
    >>> [(2+(bin_len+2)*4//3) for bin_len in xrange(10)]
    [4, 6, 7, 8, 10, 11, 12, 14, 15, 16]

How is this the correct estimation? The results are different.

Try the following:

>>> [(2+(bin_len+2)//3*4) for bin_len in xrange(10)]
[2, 6, 6, 6, 10, 10, 10, 14, 14, 14]
History
Date User Action Args
2010-01-14 12:32:56pitrousetrecipients: + pitrou, vstinner
2010-01-14 12:32:56pitrousetmessageid: <1263472376.91.0.856900856571.issue7701@psf.upfronthosting.co.za>
2010-01-14 12:32:55pitroulinkissue7701 messages
2010-01-14 12:32:55pitroucreate