Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
89e5b22
DOC: Fix validation error RT01 in pandas/core (#25356)
ihsansecer Apr 27, 2019
4ef2b93
DOC: Fix validation error RT01 in pandas/tseries (#25356)
ihsansecer Apr 27, 2019
648d156
DOC: Fix validation error RT01 in pandas/core/arrays (#25356)
ihsansecer Apr 27, 2019
9498481
DOC: Fix validation error RT01 in pandas/core/dtypes (#25356)
ihsansecer Apr 27, 2019
7967414
DOC: Fix validation error RT01 in pandas/plotting (#25356)
ihsansecer Apr 27, 2019
ac4e339
DOC: Fix validation error RT01 in pandas/util (#25356)
ihsansecer Apr 27, 2019
e1ae56c
DOC: Fix validation error RT01 in pandas/io (#25356)
ihsansecer Apr 27, 2019
dd105a6
DOC: Fix remaining validation errors RT01 (#25356)
ihsansecer Apr 28, 2019
a107468
DOC: Fix validation error RT01 for itertuples function (#25356)
ihsansecer Apr 28, 2019
c7124e7
DOC: Update the code_check.sh script to take into account the RT01 ty…
ihsansecer Apr 28, 2019
26a3dc5
DOC: Remove repeating return description (#25356)
ihsansecer Apr 28, 2019
5920ad2
DOC: Remove whitespaces (#25356)
ihsansecer Apr 28, 2019
484b69b
DOC: Fix introduced docstring validation errors (#25356)
ihsansecer Apr 28, 2019
dc209be
DOC: Add period to the end of first line where missing (#26234)
ihsansecer Apr 29, 2019
a011fa4
DOC: Change boolean to bool (#26234)
ihsansecer Apr 29, 2019
85a82c4
DOC: Remove returned variable names from docstring (#26234)
ihsansecer Apr 29, 2019
bd21eea
DOC: Fix typo #26234
datapythonista May 1, 2019
d5f80f7
DOC: Make minor style changes (#26234)
ihsansecer May 1, 2019
d32306c
DOC: Remove return section from None returning functions (#26234)
ihsansecer May 7, 2019
dc42367
Merge remote-tracking branch 'upstream/master' into rt01-validation-e…
ihsansecer May 7, 2019
331a5df
DOC: Resolve conflicts (#26234)
ihsansecer May 7, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC: Change boolean to bool (#26234)
  • Loading branch information
ihsansecer committed Apr 29, 2019
commit a011fa439ba56b6874b551466bcc80c62f8d31aa
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ def bool(self):

Returns
-------
boolean
bool
Same single boolean value converted to bool type.
"""
v = self.squeeze()
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ def any(self, skipna=True):

Returns
-------
boolean
bool
"""
return self._bool_agg('any', skipna)

Expand All @@ -1091,7 +1091,7 @@ def all(self, skipna=True):

Returns
-------
boolean
bool
"""
return self._bool_agg('all', skipna)

Expand Down
4 changes: 2 additions & 2 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4075,7 +4075,7 @@ def equals(self, other):

Returns
-------
boolean
bool
If two Index objects have equal elements True, otherwise False.
"""
if self.is_(other):
Expand All @@ -4101,7 +4101,7 @@ def identical(self, other):

Returns
-------
boolean
bool
If two Index objects have equal elements and same type True,
otherwise False.
"""
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/indexes/category.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def equals(self, other):

Returns
-------
boolean
bool
If two CategorialIndex objects have equal elements True,
otherwise False.
"""
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/indexes/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ def is_lexsorted(self):

Returns
-------
boolean
bool
"""
return self.lexsort_depth == self.nlevels

Expand Down