We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 486d40c commit bdd8108Copy full SHA for bdd8108
pandas/core/arrays/boolean.py
@@ -45,8 +45,8 @@ class BooleanDtype(BaseMaskedDtype):
45
46
`BooleanDtype` enables use of null boolean data in pandas structures such as
47
`Series` and `array`. Internally, it is backed by pandas BooleanArray,
48
- which stores data using two numpy boolean arrays: one to store values('True'/'False')
49
- and a mask to indicate missing values (`pd.NA`)
+ which stores data using two numpy boolean arrays: one to store values
+ ('True'/'False') and a mask to indicate missing values (`pd.NA`)
50
51
.. warning::
52
@@ -84,7 +84,6 @@ class BooleanDtype(BaseMaskedDtype):
84
BooleanDtype
85
"""
86
87
-
88
name: ClassVar[str] = "boolean"
89
90
# The value used to fill '_data' to avoid upcasting
0 commit comments