|
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. | |
| | | | |
akaptur.github.com
|
|
| | | | | [Edit: A significantly expanded version of this series appears as a chapter in The Architecture of Open Source Applications, volume 4, as A Python ... | |
| | | | |
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. | |
| | | | |
tonybaloney.github.io
|
|
| | | [AI summary] This blog post discusses the Pyjion project, which integrates the .NET 5 JIT compiler into Python 3.9 to enhance performance by compiling Python code into native machine code at runtime. | ||