Skip to content

Commit 935671d

Browse files
committed
re-add deleted comment, uncomment previously commented line
1 parent c66336d commit 935671d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/core/frame.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2234,6 +2234,10 @@ def eval(self, expr, inplace=True, **kwargs):
22342234
If the expression contains an assignment, whether to return a new
22352235
DataFrame or mutate the existing.
22362236
2237+
WARNING: inplace=None currently falls back to to True, but
2238+
in a future version, will default to False. Use inplace=True
2239+
explicitly rather than relying on the default.
2240+
22372241
.. versionadded:: 0.18.0
22382242
22392243
kwargs : dict
@@ -3291,7 +3295,7 @@ def sort(self, columns=None, axis=0, ascending=True, inplace=False,
32913295
-------
32923296
sorted : DataFrame
32933297
"""
3294-
# nv.validate_sort(tuple(), kwargs)
3298+
nv.validate_sort(tuple(), kwargs)
32953299

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

0 commit comments

Comments
 (0)