Unpacking in Comprehensions – New in Python 3.15 (PEP 798)
You can now use * and ** unpacking directly inside list, dict, and set comprehensions for cleaner code.
Example
data = [{"a": 1}, {"b": 2}]
result = {**d for d in data}
Conclusion
A small but very welcome syntax improvement for 2026.