Explore >> Select a destination


You are here

blog.quarkslab.com
| | zserge.com
4.6 parsecs away

Travel
| | 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
1.6 parsecs away

Travel
| | [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
3.3 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.
| | tonybaloney.github.io
31.6 parsecs away

Travel
| [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.