Skip to content

Commit 6a33cb7

Browse files
committed
re-add deleted comment, uncomment previously commented line
1 parent e4616f5 commit 6a33cb7

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
@@ -2196,6 +2196,10 @@ def eval(self, expr, inplace=True, **kwargs):
21962196
If the expression contains an assignment, whether to return a new
21972197
DataFrame or mutate the existing.
21982198
2199+
WARNING: inplace=None currently falls back to to True, but
2200+
in a future version, will default to False. Use inplace=True
2201+
explicitly rather than relying on the default.
2202+
21992203
.. versionadded:: 0.18.0
22002204
22012205
kwargs : dict
@@ -3258,7 +3262,7 @@ def sort(self, columns=None, axis=0, ascending=True, inplace=False,
32583262
-------
32593263
sorted : DataFrame
32603264
"""
3261-
# nv.validate_sort(tuple(), kwargs)
3265+
nv.validate_sort(tuple(), kwargs)
32623266

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

0 commit comments

Comments
 (0)