In my view I try:
{{{
now = datetime.datetime.now(pytz.utc)
request.session['lstts'] = now
}}}
But I get the following error: http://dpaste.com/hold/1375033/
I presume the reason is the new serializer for session objects. I also
presume that "datatime" objects must be supported, because they are quite
useful and used.
--
Ticket URL: <https://code.djangoproject.com/ticket/21087>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
The JSON format doesn't provide a type for dates/datetimes. We'll have to
resort to a hack to support this use case.
--
Ticket URL: <https://code.djangoproject.com/ticket/21087#comment:1>
* status: new => closed
* resolution: => fixed
Comment:
This was discussed quite a bit during the implementation, and the caveats
of JSON serialization have been documented:
https://docs.djangoproject.com/en/dev/releases/1.6/#default-session-
serialization-switched-to-json
https://docs.djangoproject.com/en/dev/topics/http/sessions/#session-
serialization
You can continue to use the `PickleSerializer` if needed.
--
Ticket URL: <https://code.djangoproject.com/ticket/21087#comment:2>
* resolution: fixed => wontfix
--
Ticket URL: <https://code.djangoproject.com/ticket/21087#comment:3>