We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1858c2 commit e64acdfCopy full SHA for e64acdf
doc/source/whatsnew/v0.23.1.txt
@@ -74,6 +74,7 @@ I/O
74
Reshaping
75
76
- Bug in :func:`concat` where error was raised in concatenating :class:`Series` with numpy scalar and tuple names (:issue:`21015`)
77
+- Bug in :func:`concat` warning message providing the wrong guidance for future behavior (:issue:`21101`)
78
79
Other
80
pandas/core/indexes/api.py
@@ -24,9 +24,9 @@
24
Sorting because non-concatenation axis is not aligned. A future version
25
of pandas will change to not sort by default.
26
27
-To accept the future behavior, pass 'sort=True'.
+To accept the future behavior, pass 'sort=False'.
28
29
-To retain the current behavior and silence the warning, pass sort=False
+To retain the current behavior and silence the warning, pass 'sort=True'.
30
""")
31
32
0 commit comments