Juha Jeronen

Results 185 comments of Juha Jeronen
trafficstars

Updated again. Cleaned-up version of remaining TODOs: - Within the explanation of each feature, the main text could use copyediting. Important points first, details after. - We need a clearer...

There are [***four kinds* of documentation**](https://documentation.divio.com/): - **Tutorials** - *Learning-oriented, practical steps, most useful when studying* - **How-to guides** - *Problem-oriented, practical steps, most useful when working* - **Explanation** -...

Ah, maybe it should be documented here that the code should have *3.4* or *3.5* mentioned in the comments anywhere it was foreseen to need an update once we bump...

Exciting new things in 3.8 to keep track of: - [PEP 572, Assignment expressions](https://www.python.org/dev/peps/pep-0572/). This could give us a cleaner way to implement the `let` construct, since one of the...

"The old format" is `Num`, `Str` and `NameConstant`. Grep for those, they turn up at surprising places in our macro code.

The [GTS](https://greentreesnakes.readthedocs.io/en/latest/nodes.html) docs have partially updated to 3.8, but as of this writing don't yet have a mention of the new assignment-expression operator `:=`. EDIT: the AST node is called...

In the semi-distant future, once Python 3.8 becomes the new minimum for `unpythonic` - on which I'm tempted to wait until PyPy3 implements 3.8 - we could shift our convention...

Ubuntu and Mint have since bumped to 3.8 as the default Python. As of April 2021, PyPy3 supports 3.7. According to the devblog, [the focus is now on 3.8](https://www.pypy.org/posts/2021/04/pypy-v734-release-of-python-27-and-37.html), so...

As of 49d40ff, Python 3.4 and 3.5 support dropped in the [`015wip`](https://github.com/Technologicat/unpythonic/tree/015wip) branch. **We now require Python 3.6 or later.** The main target for `unpythonic` 0.15 is Python 3.8, which...

As of 73cf03e, AST changes for supporting 3.6, 3.7, 3.8 and 3.9 are done. Also, string formatting is now in 3.6+ f-string style, and the detection of Python 3.8 in...