Skip to content

Commit 1721270

Browse files
committed
update CHANGELOG
1 parent f06c40e commit 1721270

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111
**New**:
1212

1313
- **Python 3.12 support**.
14-
- As in, all tests pass, so there are no regressions. Some undiscovered interactions with new language features (`type` statement) may still be broken.
14+
- As in, all tests pass, so there are no regressions. Some undiscovered interactions with new language features (`type` statement) may still be broken, although the most obvious cases are already implemented.
1515
- **Python 3.11 support**.
16-
- As in, all tests pass, so there are no regressions. Some undiscovered interactions with new language features (`try`/`except*` construct) may still be broken.
16+
- As in, all tests pass, so there are no regressions. Some undiscovered interactions with new language features (`try`/`except*` construct) may still be broken, although the most obvious cases are already implemented.
1717
- Walrus syntax `name := value` is now supported, and preferred, for all env-assignments. Old syntax `name << value` still works, and will remain working at least until v0.16.0, whenever that is.
1818
- Note that language support for using an assignment expression inside a subscript *without parenthesizing it* was [added in Python 3.10](https://docs.python.org/3/whatsnew/3.10.html#other-language-changes).
1919
- If you still use Python 3.8 or 3.9, with the new `:=` syntax you must put parentheses around each `let` binding, because syntactically, the bindings subform looks like a subscript.
2020
- All documentation is written in Python 3.10 syntax; all unit tests are written in Python 3.8 syntax.
21+
22+
23+
**Changed**:
24+
2125
- Utility module `unpythonic.syntax.astcompat`, used by the macro layer, moved to `mcpyrate.astcompat`. This module handles version differences in the `ast` module in various versions of Python.
2226

2327

0 commit comments

Comments
 (0)