﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28628	Audit for and abolish all use of '\d' in regexes	James Bennett	nobody	Now that we're in the 2.0 release cycle and Python 3 only, any examples or code in Django using a `\d` in a regex should be replaced with `[0-9]`, as `\d` on Python 3 matches any character with Unicode category [Nd], which is almost certainly not what people expect. Changing to explicit `[0-9]`, perhaps with a note about why it should be preferred, would be better.	Cleanup/optimization	new	Documentation	dev	Normal				Unreviewed	0	0	0	0	0	0
