﻿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
26639	Default to ASCIIUsernameValidator (instead of UnicodeUsernameValidator) in Django 1.10	David	nobody	"Would Django devs please consider using ASCIIUsernameValidator as the default, and leave UnicodeUsernameValidator as an opt-in option?

I don't have the experience in this industry to provide a solid list of technical reasons or arguments for why this should be done, but perhaps I can try to provide a reason for Django usability from a user standpoint:

A Django user who is trying to save time and get a product out the door isn't going to focus on finer details such as Unicode usernames, and will be in for a shock when he finds out a bunch of his users have registered themselves with Egyptian hieroglyphics. He may be very frustrated, eventually figuring out that he must subclass the User model and set `username_validator = ASCIIUsernameValidator()` to get the functionality he expected. And what is he to do with the existing Unicode users, delete all their accounts?

Whereas a technologically forward user might be friendlier towards Unicode usernames, and would be well-informed on these capabilities within Django. Furthermore, the technologically forward user will be more likely to already have a custom user model, and won't find it cumbersome to explicitly enable Unicode usernames. Enabling Unicode usernames isn't destructive like disabling it would be (no need to figure out what to do with the existing users offending the validation), so users can simply start using it immediately.

Thanks!"	New feature	closed	contrib.auth	1.9	Normal	wontfix	users, username, unicode, ascii		Unreviewed	0	0	0	0	0	0
