Package: python3-mistune Version: 0.8.4-4 Severity: normal Tags: upstream This deprecation warning appears with Python 3.9:
/usr/lib/python3/dist-packages/mistune.py:435: DeprecationWarning: invalid
escape sequence \|
cells[i][c] = re.sub('\\\\\|', '|', cell)
I'm not sure what is intended here; perhaps
cells[i][c] = re.sub(r'\|', '|', cell)
Best wishes,
Julian

