As part of this blog series on Python's syntactic sugar
[https://snarky.ca/tag/syntactic-sugar/], I said in the post on unary arithmetic
operators [https://snarky.ca/unravelling-unary-arithmetic-operators/] that it might
For the next part of my blog series on pulling apart Python's syntactic sugar
[https://snarky.ca/tag/syntactic-sugar/], I'm going to be tackling rich comparison
operators: ==, !=, >, <
In this entire blog series on Python's syntactic sugar
[https://snarky.ca/tag/syntactic-sugar/], this might end up being the most boring
post. 😄 We will cover the unary arithmetic operators: -,
Prologue
This post is part of a series on Python's syntactic sugar. The latest source code can be found as part of the desugar project.
Introduction
Python has something called augmented
[This post has been updated multiple times since it's initial posting; see the Corrections section at the end for what was changed.]
The reaction to my blog post on unravelling attribute