Skip to content

Commit 07da201

Browse files
update
1 parent 7dee831 commit 07da201

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pandas/core/frame.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9969,7 +9969,7 @@ def ne(self, other, axis: Axis = "columns", level=None) -> DataFrame:
99699969

99709970
def le(self, other, axis: Axis = "columns", level=None) -> DataFrame:
99719971
"""
9972-
Binary operator `le`
9972+
Binary operator `le`.
99739973

99749974
Get Greater than or equal to of dataframe and other,element-wise.
99759975

@@ -10283,7 +10283,7 @@ def lt(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1028310283

1028410284
def ge(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1028510285
"""
10286-
Binary operator `ge`
10286+
Binary operator `ge`.
1028710287

1028810288
Get Greater than or equal to of dataframe and other,element-wise.
1028910289

@@ -11198,7 +11198,7 @@ def rsub(
1119811198
self, other, axis: Axis = "columns", level=None, fill_value=None
1119911199
) -> DataFrame:
1120011200
"""
11201-
Binary operator `rsub`
11201+
Binary operator `rsub`.
1120211202

1120311203
Get Subtraction of dataframe and other,element-wise.
1120411204

@@ -11399,7 +11399,7 @@ def mul(
1139911399
self, other, axis: Axis = "columns", level=None, fill_value=None
1140011400
) -> DataFrame:
1140111401
"""
11402-
Binary operator `mul`
11402+
Binary operator `mul`.
1140311403

1140411404
Get Multiplication of dataframe and other,element-wise.
1140511405

@@ -11602,7 +11602,7 @@ def rmul(
1160211602
self, other, axis: Axis = "columns", level=None, fill_value=None
1160311603
) -> DataFrame:
1160411604
"""
11605-
Binary operator `rmul`
11605+
Binary operator `rmul`.
1160611606

1160711607
Get Multiplication of dataframe and other,element-wise.
1160811608

@@ -11803,7 +11803,7 @@ def truediv(
1180311803
self, other, axis: Axis = "columns", level=None, fill_value=None
1180411804
) -> DataFrame:
1180511805
"""
11806-
Binary operator `truediv`
11806+
Binary operator `truediv`.
1180711807

1180811808
Get Floating division of dataframe and other,element-wise.
1180911809

@@ -12007,7 +12007,7 @@ def rtruediv(
1200712007
self, other, axis: Axis = "columns", level=None, fill_value=None
1200812008
) -> DataFrame:
1200912009
"""
12010-
Binary operator `rtruediv`
12010+
Binary operator `rtruediv`.
1201112011

1201212012
Get Floating division of dataframe and other,element-wise.
1201312013

@@ -12210,7 +12210,7 @@ def floordiv(
1221012210
self, other, axis: Axis = "columns", level=None, fill_value=None
1221112211
) -> DataFrame:
1221212212
"""
12213-
Binary operator `floordiv`
12213+
Binary operator `floordiv`.
1221412214

1221512215
Get Integer division of dataframe and other,element-wise.
1221612216

@@ -12412,7 +12412,7 @@ def rfloordiv(
1241212412
self, other, axis: Axis = "columns", level=None, fill_value=None
1241312413
) -> DataFrame:
1241412414
"""
12415-
Binary operator `rfloordiv`
12415+
Binary operator `rfloordiv`.
1241612416

1241712417
Get Integer division of dataframe and other,element-wise.
1241812418

@@ -13214,7 +13214,7 @@ def rpow(
1321413214
self, other, axis: Axis = "columns", level=None, fill_value=None
1321513215
) -> DataFrame:
1321613216
"""
13217-
Binary operator `rpow`
13217+
Binary operator `rpow`.
1321813218

1321913219
Get Exponential power of dataframe and other,element-wise.
1322013220

0 commit comments

Comments
 (0)