This product is not supported for your selected
Datadog site. (
).
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
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"
シームレスな統合。 Datadog Code Security をお試しください