mirror of https://github.com/django/django.git
Revert [8799]. That wasn't ready for prime-time yet -- thanks, git-svn!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a3196dac48
commit
15206298ed
|
@ -82,11 +82,4 @@ datetime.datetime(2007, 4, 20, 16, 19, 59)
|
|||
>>> Donut.objects.filter(consumed_at__year=2008)
|
||||
[]
|
||||
|
||||
# TZ-aware datetimes (#8354).
|
||||
>>> from django.utils import tzinfo
|
||||
>>> dt = datetime.datetime(2008, 8, 31, 16, 20, tzinfo=tzinfo.FixedOffset(0))
|
||||
>>> d = Donut(name='Bear claw', consumed_at=dt)
|
||||
>>> d.save()
|
||||
>>> Donut.objects.filter(consumed_at=dt)
|
||||
[<Donut: Bear claw>]
|
||||
"""}
|
||||
|
|
Loading…
Reference in New Issue