﻿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
1213	Value of NOT_PROVIDED might collide with real data	Antti Kaihola	Adrian Holovaty	"In django.core.meta.fields, NOT_PROVIDED is defined as
{{{
# Random entropy string used by ""default"" param.
NOT_PROVIDED = 'oijpwojefiojpanv'
}}}

Although extremely unlikely, this string could appear as a default value in a model and be interpreted as if no default value was provided.

Is there something preventing the following:
{{{
class NOT_PROVIDED:
    pass
}}}
Or are there some control characters in the range chr(0..31) which don't make sense in the database backend side and could be used here?
"	defect	closed	Database layer (models, ORM)		trivial	fixed			Accepted	0	0	0	0	0	0
