Skip to content
Merged
Changes from all commits
Commits
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
14 changes: 0 additions & 14 deletions py-polars/src/polars/datatypes/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,6 @@ class Decimal(NumericType):
"""
Decimal 128-bit type with an optional precision and non-negative scale.

.. warning::
This functionality is considered **unstable**.
It is a work-in-progress feature and may not always work as expected.
It may be changed at any point without it being considered a breaking change.

Parameters
----------
precision
Expand All @@ -441,15 +436,6 @@ def __init__(
precision: int | None = None,
scale: int = 0,
) -> None:
# Issuing the warning on `__init__` does not trigger when the class is used
# without being instantiated, but it's better than nothing
from polars._utils.unstable import issue_unstable_warning

issue_unstable_warning(
"the Decimal data type is considered unstable."
" It is a work-in-progress feature and may not always work as expected."
)

if precision is None:
precision = 38

Expand Down
Loading