We are still using the old implementation, re_path, for URL configuration. After Django upgrade can now use path instead, which is more readable and possibly faster. The Django documentation shows the difference between the two. (This should not change functionality in any way, if done correctly.)
We should change all .../urls.py files to use this function instead.
We are still using the old implementation,
re_path, for URL configuration. After Django upgrade can now usepathinstead, which is more readable and possibly faster. The Django documentation shows the difference between the two. (This should not change functionality in any way, if done correctly.)We should change all
.../urls.pyfiles to use this function instead.