Closed adamchainz closed 10 months ago
Fix some warnings in the vein of #1326:
test_project/select2_generic_foreign_key/test_forms.py::GenericFormTest::test_initial /.../test_project/select2_generic_foreign_key/urls.py:13: SyntaxWarning: invalid escape sequence '\d' 'test/(?P<pk>\d+)/$', test_project/select2_generic_foreign_key/test_forms.py::GenericFormTest::test_initial /.../test_project/select2_many_to_many/urls.py:20: SyntaxWarning: invalid escape sequence '\d' 'test/(?P<pk>\d+)/$',
The warning is SyntaxWarning from Python 3.12 onwards, with the aim to remove support soon.
SyntaxWarning
Fix some warnings in the vein of #1326:
The warning is
SyntaxWarning
from Python 3.12 onwards, with the aim to remove support soon.