﻿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
23301	DateField doesn't work when called 'date'	Fletcher Tomalty	nobody	"When called anything else it seems to work fine.

{{{#!python
m = MyModel(date = datetime.date.today())
m.save()
MyModel.objects.get().date # None

# models.py
class MyModel(models.Model):
	date = models.DateField()

}}}

Running Django 1.6.5. Let me know what else is required to debug/reproduce.

Edit: after some testing/process of elimination, it looks like the bug isn't quite that simple. Stand by while I figure out exactly how to reproduce it.

Edit #2: Well, at first I observed this in one of my models, then I created a TestModel and obvserved the same thing. Changing the field in either model to 'not_called_date' seemed to fix the issue. Now only a few minutes later I can't reproduce the bug at all, no matter what I call the field. I'll mark this as closed for now, but maybe somebody else will encounter something similar in the future."	Bug	closed	Database layer (models, ORM)	1.6	Normal	worksforme			Unreviewed	0	0	0	0	0	0
