Skip to content

Commit c626626

Browse files
committed
re-add deleted comment, uncomment previously commented line
1 parent 0fe7b39 commit c626626

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/core/frame.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2231,6 +2231,10 @@ def eval(self, expr, inplace=True, **kwargs):
22312231
If the expression contains an assignment, whether to return a new
22322232
DataFrame or mutate the existing.
22332233
2234+
WARNING: inplace=None currently falls back to to True, but
2235+
in a future version, will default to False. Use inplace=True
2236+
explicitly rather than relying on the default.
2237+
22342238
.. versionadded:: 0.18.0
22352239
22362240
kwargs : dict
@@ -3272,7 +3276,7 @@ def sort(self, columns=None, axis=0, ascending=True, inplace=False,
32723276
-------
32733277
sorted : DataFrame
32743278
"""
3275-
# nv.validate_sort(tuple(), kwargs)
3279+
nv.validate_sort(tuple(), kwargs)
32763280

32773281
if columns is None:
32783282
warnings.warn("sort(....) is deprecated, use sort_index(.....)",

0 commit comments

Comments
 (0)