1
0
mirror of https://github.com/django/django.git synced 2025-06-08 13:09:13 +00:00

Reformatted .txt files using blacken-docs

This commit is contained in:
jcagado 2024-08-06 20:23:58 -07:00
parent e4ab2cef99
commit cd7d243561

View File

@ -690,12 +690,15 @@ case it can't be included in a :class:`~django.forms.ModelForm`.
``BooleanField``
----------------
class BooleanField(**options)
.. class:: BooleanField(**options)
A true/false field.
The default form widget for this field is CheckboxInput, or NullBooleanSelect if null=True.
The default form widget for this field is :class:`~django.forms.CheckboxInput`,
or :class:`~django.forms.NullBooleanSelect` if :attr:`null=True <Field.null>`.
The default value of BooleanField is None when Field.default isnt defined.
The default value of ``BooleanField`` is ``None`` when :attr:`Field.default`
isn't defined.
.. note::
@ -707,9 +710,11 @@ The default value of BooleanField is None when Field.default isnt defined.
from django.db import models
class MyModel(models.Model):
my_field = models.BooleanField(db_default=False)
my_obj = MyModel()
print(bool(my_obj.my_field)) # True, which is unexpected.