Looking at the docs I found that Generators-based coroutines, something that twisted's inline callbacks depend a lot, will be deprecated soon by the time python 3.10 is released.Note
Support for generator-based coroutines is deprecated and is scheduled for removal in Python 3.10.
This is a problem since any future python release will come without the generator-based coroutines that twisted needs, so any higher version of python 3.10 will, for the most part, completely broke a lot of twisted code that already exists.How will then twisted handle this deprecation?