Ivan Sagalaev wrote:

> It depends very much on the definition of "correctly". Django's ORM
> expect single-byte strings which for unicode means utf-8.

>>> from django.models.page import pages
>>> p = pages.Page(path=u"/föö", source=u"/bär")
>>> p.save()

>>> q = pages.get_object(path__exact=u"/föö")
>>> q.path
u'/f\xf6\xf6'

hmm...

</F>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to