do not use __unicode__

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: python-django/no-unicode-on-models

Language: Python

Severity: Warning

Category: Best Practices

Description

Do not use __unicode__ on Django models. The field __unicode__ is used for Python 2. Use __str__ instead, __str__ is used with Python 3.

Non-Compliant Code Examples

class Person(models.Model):
    
    def __unicode__(self):  # do not define __unicode__, define __str__
       pass

Compliant Code Examples

class Person(models.Model):
    
    def __str__(self):
       "person"
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis