Explore >> Select a destination


You are here

akaptur.github.com
| | yasoob.me
3.4 parsecs away

Travel
| | Hi people! Recently, I was super confused when I found out that: >>> pow(3,89) runs slower than: >>> 3**89 I tried to think of a suitable answer but couldn't find any. I timed the execution of both of these statements using the timeit module in Python3: $ python3 -m timeit 'pow(3,89)' 500000 loops, best of 5: 688 nsec per loop $ python3 -m timeit '3**89' 500000 loops, best of 5: 519 nsec per loop The difference is not big.
| | www.justus.pw
2.0 parsecs away

Travel
| | [AI summary] This article explains how to use Python's disassembly library to inspect and understand CPython's byte code, including examples of disassembling a simple function.
| | blog.quarkslab.com
1.6 parsecs away

Travel
| | Where building a custom obfuscated Python interpreter for a Python packer turned into an optimized Python interpreter.
| | blog.dbrgn.ch
22.6 parsecs away

Travel
| How to avoid accidentally breaking no_std compatibility in Rust crates.