Django

Code

Show
Ignore:
Timestamp:
07/04/07 07:11:04 (2 years ago)
Author:
mtredinnick
Message:

Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.

Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk

    • Property svnmerge-integrated set to /django/trunk:1-5600
  • django/trunk/tests/modeltests/get_or_create/models.py

    r4796 r5609  
    1313    birthday = models.DateField() 
    1414 
    15     def __str__(self): 
    16         return '%s %s' % (self.first_name, self.last_name) 
     15    def __unicode__(self): 
     16        return u'%s %s' % (self.first_name, self.last_name) 
    1717 
    1818__test__ = {'API_TESTS':"""