Re: placing querydict in session wipes all session variables

2008-05-14 Thread RajeshD
Hi Mike, > http://code.djangoproject.com/ticket/7233 > > and uploaded a test case. I've just uploaded a patch to that ticket. Hopefully, others can review. -Rajesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D

Re: placing querydict in session wipes all session variables

2008-05-13 Thread Mike Chambers
I logged the issue here: http://code.djangoproject.com/ticket/7233 and uploaded a test case. mike Jeremy Dunck wrote: > On Tue, May 13, 2008 at 10:24 PM, Mike Chambers <[EMAIL PROTECTED]> wrote: > ... >> request.session['form_post_data'] = request.POST.copy() >> request.session['foo'] = "bar"

Re: placing querydict in session wipes all session variables

2008-05-13 Thread Mike Chambers
Nightly build from subversion. Ill put together a simple test. When posting a test, should I post an entire project, or just the relevant parts? mike Jeremy Dunck wrote: > On Tue, May 13, 2008 at 10:24 PM, Mike Chambers <[EMAIL PROTECTED]> wrote: > ... >> request.session['form_post_data'] =

Re: placing querydict in session wipes all session variables

2008-05-13 Thread Jeremy Dunck
On Tue, May 13, 2008 at 10:24 PM, Mike Chambers <[EMAIL PROTECTED]> wrote: ... > request.session['form_post_data'] = request.POST.copy() > request.session['foo'] = "bar" > > Then, in another request: > > print request.session.keys() > prints [] > Definitely sounds like a bug. What revision of Dj

placing querydict in session wipes all session variables

2008-05-13 Thread Mike Chambers
I have been trying to track down and issue, and I think I may have discovered a bug. However, before I log it, I wanted to post here and ask what the expected behavior is. I am using a pretty recent build. The issue is that it appears trying to store a QueryDict (request.POST, or a copy of a