Changes between Version 3 and Version 4 of UnicodeBranch


Ignore:
Timestamp:
Apr 9, 2007, 6:00:13 PM (18 years ago)
Author:
Malcolm Tredinnick
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UnicodeBranch

    v3 v4  
    1818 * Make it easier for developers to work with non-ASCII character data when working with Django.
    1919 * Be more consistent in our string handling behaviour inside Django (see StringEncoding for details on this).
     20
     21Upon completion, you will be able to pass around unicode strings anywhere inside Django (or between Django and developer applications).
     22
     23Note that we are not trying to switch to forcing everybody to ''only'' use unicode strings. You will also be able to pass around bytestrings and Django will assume they are UTF-8 encoded (we have to make an assumption because there is no way to tell what the encoding is otherwise). This feature means that a large chunk of existing code that uses Django will continue to work unchanged.
    2024
    2125== Status ==
Back to Top