I am using code similar to from warnings import deprecated @deprecated def test(): print("test") test() I am getting an error (python 3.11) with "cannot load deprecated from warnings" and I was wondering if anybody knows why that is. I noticed that warnings.py does infact have that class Continue reading...