Hypothesis 6.x¶| hypothesis.readthedocs.io
Why are scalable systems locally-inefficent, and locally-efficient systems unscalable? Plus, new book release!| buttondown.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.| zserge.com
Python possessive quantifiers and atomic grouping, and how they help prevent catastrophic backtracking in regular expressions.| learnbyexample.github.io
The “What’s New in Python” series of essays takes tours through the most important changes between major Python versions. They are a “must read” for anyone wishing to stay up-to-date after a new re...| Python documentation
Why Do You Need Different Python Versions? Why would you want to install another Python version than the one your system already ships with? Well, the default Python version that is bundled with your system is usually way too old and might not have what you need. For instance, Python 3.11 is now 10~60% faster than 3.10 which is a huge improvement and can improve your applications and scripts runtime.| thegraynode.io
Pyodide 0.23 is a major release focused on updating CPython version to 3.11. It also brings several new features, enhancements, and bug fixes. This release includes updates to the Python standard library, deployment and build system enhancements, and new CLI commands. We also added several new packages to Pyodide, including fastparquet, pynacl and binary wheels for mypy. Note that there are several API deprecations; please refer to the changelog for details.| Pyodide blog
Troubleshooting emacs-jupyter with python 3.11.| The Cloistered Monkey
Is most of your runtime spent waiting on responses from remote nodes? Let's talk concurrency.| Snake Charmers
Python 3.11 has hit the beta (now released!) stage, which means no more new features. It’s a perfect time to play with it! The themes in this update are the standard ones: The faster CPython project is now fully going (3.11 is 25% faster on average), along with improved error messages, typing, and asyncio. Beyond this, the only major new feature is a library for reading TOML files; this probably only exciting if you are involved in Python packaging (but I am, so I’m excited!).| ISciNumPy.dev