Skip to content

Commit a046189

Browse files
authored
DOC: Added clarification for the input to pandas.core.series.Series (#58728)
Updated docstring for Series()
1 parent 986074b commit a046189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class Series(base.IndexOpsMixin, NDFrame): # type: ignore[misc]
246246
----------
247247
data : array-like, Iterable, dict, or scalar value
248248
Contains data stored in Series. If data is a dict, argument order is
249-
maintained.
249+
maintained. Unordered sets are not supported.
250250
index : array-like or Index (1d)
251251
Values must be hashable and have the same length as `data`.
252252
Non-unique index values are allowed. Will default to

0 commit comments

Comments
 (0)