Message77909
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')) |
|
| 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: <[email protected]> |
| 2008-12-16 14:04:05 | rhettinger | link | issue3439 messages |
| 2008-12-16 14:04:05 | rhettinger | create | |
|