|
You are here |
blog.quarkslab.com | ||
| | | | |
zserge.com
|
|
| | | | | Summing up years of building interpreters and compilers for various programming languages. The first chapter is about assembly language. We will try to implement a tiny two-pass assembler for CPython VM. | |
| | | | |
yasoob.me
|
|
| | | | | 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. | |
| | | | |
tenthousandmeters.com
|
|
| | | | | Consider a simple assignment statement in Python: a = b The meaning of this statement may seem trivial. What we do here is take the value of the... | |
| | | | |
blog.dbrgn.ch
|
|
| | | How to avoid accidentally breaking no_std compatibility in Rust crates. | ||