Another installment in my look at all the new features added to Python in each 3.x release, this one covering 3.2. There’s a lot covered including the argparse module, support for futures, changes to the GIL implementation, SNI support in SSL/TLS, and much more besides. This is my longest article ever by far! If you’re puzzled why I’m looking at releases that are years old, check out the first post in the series.
This is the 3rd of the 32 articles that currently make up the “Python 3 Releases” series, the first of which was What’s New in Python 3.0.
Read article ( 48 minutes )
This article continues to series looking at features added in each release of Python 3.x, with this one covering the move from 3.0 to 3.1. It includes the new contains OrderedDict and Counter, making modules executable as scripts, and marking unit tests as known failures. If you’re puzzled why I’m looking at releases that are years old, check out the first post in the series.
This is the 2nd of the 32 articles that currently make up the “Python 3 Releases” series, the first of which was What’s New in Python 3.0.
Read article ( 19 minutes )
I was slow to make the transition from Python 2 to 3 in the first place, and I never felt like I kept up properly with the new features. So I’m going to aim to do a series of articles looking at a different Python version in each and go through the new features added and catch myself up properly. This one addresses features added in Python 3.0 beyond those already in 2.6, including Unicode by default, type annotations, and exception chaining.
This is the 1st of the 32 articles that currently make up the “Python 3 Releases” series.
Read article ( 33 minutes )
I recently spotted that Python 3.5 has added yet more features to make coroutines more straightforward to implement and use. Since I’m well behind the curve I thought I’d bring myself back up to date over a series of blog posts, each going over some functionality added in successive Python versions — this one covers additional syntax that was added in Python 3.5.
This is the 4th of the 4 articles that currently make up the “State of Python Coroutines” series, the first of which was The State of Python Coroutines: yield from.
Read article ( 11 minutes )
I recently spotted that Python 3.5 has added yet more features to make coroutines more straightforward to implement and use. Since I’m well behind the curve I thought I’d bring myself back up to date over a series of blog posts, each going over some functionality added in successive Python versions — this one covers more of the asyncio
module that was added in Python 3.4.
This is the 3rd of the 4 articles that currently make up the “State of Python Coroutines” series, the first of which was The State of Python Coroutines: yield from.
Read article ( 16 minutes )
I recently spotted that Python 3.5 has added yet more features to make coroutines more straightforward to implement and use. Since I’m well behind the curve I thought I’d bring myself back up to date over a series of blog posts, each going over some functionality added in successive Python versions — this one covers parts of the asyncio
module that was added in Python 3.4.
This is the 2nd of the 4 articles that currently make up the “State of Python Coroutines” series, the first of which was The State of Python Coroutines: yield from.
Read article ( 7 minutes )
I recently spotted that Python 3.5 has added yet more features to make coroutines more straightforward to implement and use. Since I’m well behind the curve I thought I’d bring myself back up to date over a series of blog posts, each going over some functionality added in successive Python versions — this one covers the facilities up to and including the yield from
syntax added in Python 3.3.
This is the 1st of the 4 articles that currently make up the “State of Python Coroutines” series.
Read article ( 9 minutes )
Time zones can be tricky beasts, particularly where daylight savings time is concerned. This post discusses issues around apply them to something like the ubiquitous Unix cron daemon.
Read article ( 9 minutes )
There are few technical topics about which there’s more FUD than picking a strong password.
Read article ( 5 minutes )
I recently had to do a few not-quite-trivial things with the Jinja2 templating engine, and the more I use it the more I like it.
Read article ( 4 minutes )