Skip to content

Commit

Permalink
skip and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 1, 2024
1 parent 81d634c commit 995526d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions py-polars/docs/source/reference/expressions/computation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Computation
Expr.arctan
Expr.arctanh
Expr.arg_unique
Expr.bitwise_count_ones
Expr.bitwise_count_zeros
Expr.bitwise_leading_ones
Expr.bitwise_trailing_ones
Expr.bitwise_trailing_zeros
Expr.bitwise_and
Expr.bitwise_or
Expr.bitwise_xor
Expr.cbrt
Expr.cos
Expr.cosh
Expand Down
8 changes: 8 additions & 0 deletions py-polars/docs/source/reference/series/computation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Computation
Series.arctanh
Series.arg_true
Series.arg_unique
Series.bitwise_count_ones
Series.bitwise_count_zeros
Series.bitwise_leading_ones
Series.bitwise_trailing_ones
Series.bitwise_trailing_zeros
Series.bitwise_and
Series.bitwise_or
Series.bitwise_xor
Series.cbrt
Series.cos
Series.cosh
Expand Down
2 changes: 1 addition & 1 deletion py-polars/tests/unit/operations/test_bitwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def trailing_ones(v: int | None) -> int | None:
],
)
@pytest.mark.skipif(sys.version_info < (3, 10), reason="bit_count introduced in 3.10")
@typing.no_type_check()
@typing.no_type_check
def test_bit_counts(value: int, dtype: pl.DataType) -> None:
bitsize = 8
if "Boolean" in str(dtype):
Expand Down

0 comments on commit 995526d

Please sign in to comment.