Closed vytas7 closed 3 months ago
I have soft-deprecated them in the docs in https://github.com/falconry/falcon/pull/2252. Emit a deprecation warning in a 4.x release, remove in 5.0. Unless we need them again for, e.g., Trio support (?)
the deprecation would use module __getattr__ right?
__getattr__
Yes, just like we did with json somewhere. Although in this case we can simply wrap the imported functions with deprecated(...) as well?
json
deprecated(...)
I have soft-deprecated them in the docs in https://github.com/falconry/falcon/pull/2252. Emit a deprecation warning in a 4.x release, remove in 5.0. Unless we need them again for, e.g., Trio support (?)