Playing with some new features in Python 3.15:

>>> import sys
>>> sys.set_lazy_imports('all') # enable lazy imports everywhere
>>> import this
>>> v = frozendict(major=3, minor=15, micro=0) # new type!
>>> [*i for i in v.items()] # this didn't used to work
['major', 3, 'minor', 15, 'micro', 0]

0

If you have a fediverse account, you can quote this note from your own instance. Search https://mastodon.social/users/treyhunner/statuses/116229255818359540 on your instance and quote it. (Note that quoting is not supported in Mastodon.)