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
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
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