Changes between Version 78 and Version 79 of IrcFAQ
- Timestamp:
- May 9, 2008, 10:08:53 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IrcFAQ
v78 v79 159 159 It's likely that you're using {{{__str__()}}} with the development version of Django, or {{{__unicode__()}}} with a release version. After the release of 0.96, Django's internals became fully Unicode aware. As a result, model classes that used to use {{{__str__()}}} to provide string versions of themselves need to be updated to use {{{__unicode__()}}} to work with the development version of Django. However, users of a Django release still need to use {{{__str__()}}}. 160 160 161 More information on exactly what changed regarding Unicode in Django is available on the UnicodeBranch page. 161 More information on exactly what changed regarding Unicode in Django is available on the UnicodeBranch page; note the [http://code.djangoproject.com/wiki/UnicodeBranch#PortingApplicationsTheQuickChecklist application porting checklist] if you're coming from an older version of Django. 162 163 See the StringEncoding page for an overview of how Django handles Unicode text. 162 164 163 165