> On 4 Dec 2023, at 02:29, Dom Grigonis via Python-list
> wrote:
>
> Hello,
>
> I have a request.
>
> Would it be possible to include `follow_wrapper_chains` and `skip_bound_arg`
> arguments to higher level functions of `inspect` module?
>
> Would exposing them, but setting defaults to wh
Oscar Benjamin ha scritto:
On Sun, 3 Dec 2023 at 10:25, Julieta Shem via Python-list
wrote:
Alan Bawden writes:
def powers_of_2_in(n):
bc = (n ^ (n - 1)).bit_count() - 1
return bc, n >> bc
That's pretty fancy and likely the fastest.
It might be the fastest but it depends how b