Skip to content

Commit 74b2c09

Browse files
committed
Added verisonadded
1 parent fc729d6 commit 74b2c09

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pandas/core/algorithms.py

+2
Original file line numberDiff line numberDiff line change
@@ -1451,6 +1451,8 @@ def func(arr, indexer, out, fill_value=np.nan):
14511451
def take(arr, indexer, allow_fill=False, fill_value=None):
14521452
"""Take elements from an array.
14531453
1454+
.. versionadded:: 0.23.0
1455+
14541456
Parameters
14551457
----------
14561458
arr : ndarray or ExtensionArray

pandas/core/dtypes/base.py

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ def is_dtype(cls, dtype):
9696
class ExtensionDtype(_DtypeOpsMixin):
9797
"""A custom data type, to be paired with an ExtensionArray.
9898
99+
.. versionadded:: 0.23.0
100+
99101
Notes
100102
-----
101103
The interface includes the following abstract methods that must

0 commit comments

Comments
 (0)