Re: Why was the ENABLE_PSYCO setting removed?

2007-03-25 Thread yi huang
On 3/25/07, Jonas Maurus <[EMAIL PROTECTED]> wrote: > > > Hey everybody, > > I googled and looked into the changeset, but I couldn't find anything > about why the setting was removed... I'm not trying to criticize the > change, really, but unlike many other changes there doesn't seem to be > a disc

Re: fixed the problem about simplejson in utf-8 when use chinese

2006-12-07 Thread yi huang
Why not use unicode object directly ? dict={"adviser":u"n.顾问, <美> (学生的)指导老师","od":"dd"} -- http://codeplayer.blogspot.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this

A little change to wsgi.py for PUT method .

2006-12-04 Thread yi huang
I found that in django development server , the data posted with PUT method can't be accessed using request.POST . While it's ok with apache ! So I made a little change to django/core/handlers/wsgi.py , I've changed line 110 to : if self.method in ['POST', 'PUT']: Maybe we should change t