Message77909
| Author | rhettinger |
|---|---|
| Recipients | fredrikj, loewis, mark.dickinson, pitrou, rhettinger, terry.reedy, vstinner |
| Date | 2008-12-16.14:04:05 |
| SpamBayes Score | 5.217735e-06 |
| Marked as misclassified | No |
| Message-id | <1229436246.25.0.366274018495.issue3439@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
One other thought on the docs. I would like to continue the style of
supplying pure python equivalents to help precisely explain what a
function does (see the itertools docs for an example, also a few
builtins are explained that way and namedtuples too):
+ Equivalent to::
+
+ def numbits(x):
+ 'Number of binary bits necessary to represent the integer n'
+ return len(bin(x).lstrip('-0b')) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008-12-16 14:04:06 | rhettinger | set | recipients: + rhettinger, loewis, terry.reedy, mark.dickinson, pitrou, vstinner, fredrikj |
| 2008-12-16 14:04:06 | rhettinger | set | messageid: <1229436246.25.0.366274018495.issue3439@psf.upfronthosting.co.za> |
| 2008-12-16 14:04:05 | rhettinger | link | issue3439 messages |
| 2008-12-16 14:04:05 | rhettinger | create | |