We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50d08e9 commit 5ecf905Copy full SHA for 5ecf905
bisect/38519.py
@@ -0,0 +1,11 @@
1
+import pandas as pd
2
+import pandas.testing as tm
3
+
4
+print(pd.__version__)
5
6
+s = pd.Series([1, 2, 3])
7
+original = s.copy()
8
+s1 = s.iloc[1:]
9
+s1 -= 4
10
+print(s)
11
+tm.assert_series_equal(s, original)
0 commit comments