On Fri, Jul 3, 2020 at 6:23 PM Victor Stinner <vstin...@python.org> wrote: > > > So it seems possible to fix JEP and pydevd-pycharm. IMHO it's fine to > remove PyEval_ReleaseLock() in Python 3.10. The deprecation warning is > there since Python 3.2. >
While PyEval_AcquireLock is deprecated, PyEval_ReleaseLock is not deprecated yet in C. https://github.com/python/cpython/blob/master/Include/ceval.h#L132 Maybe, we can uncomment Py_DEPRECATE in 3.10, and remove it from header file in 3.12. Regards, -- Inada Naoki <songofaca...@gmail.com> _______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/J7GZBVNTBGCFQPWGN5MRNPE2SE5NNXXE/ Code of Conduct: http://python.org/psf/codeofconduct/