﻿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
16501	Add option to accept unicode characters in SlugField	norn	Piotr Banaszkiewicz	"I patch every new version of my django installation and wondering why nobody fixed this in branch tree.

The problem is extremely simple - I like to use slug in my native language (and google likes the same). To fix the problem we just need to do this in validators.py:

{{{
slug_re = re.compile(r'^[-\w]+$',flags=re.U)
}}}

instead of this

{{{
slug_re = re.compile(r'^[-\w]+$')
}}}

The solution is simple. And the same we should do with URLValidator."	New feature	closed	Core (Other)	dev	Normal	fixed	unicode, slug	kwadrat	Accepted	1	0	0	1	0	0
