Opened 17 years ago

Last modified 17 years ago

#4871 closed

def __str__(self): — at Version 1

Reported by: Rob B Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords: unicode
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Malcolm Tredinnick)

    def __unicode__(self):
        return self.x

I think this needs to be updated to

    def __str__(self):
        return self.x

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Description: modified (diff)

Where does this need to be updated? Are you sure you are referring to the documentation for the version you are using (noting that Unicode support is only in recent subversion, not, for example, 0.96)?

Note: See TracTickets for help on using tickets.
Back to Top