Skip to content

Commit 3072e48

Browse files
Spencer Carrucciuspringcoil
Spencer Carrucciu
authored andcommitted
ENH: pickle support for Period pandas-dev#10439
update legacy_storage for pickles update pickles/msgpack for 0.16.2 Added tests for ABC Types, Issue pandas-dev#10828 TST: pandas-dev#10822, skip tests on windows for odd error message in to_datetime with unicode COMPAT:Allow multi-indexes to be written to excel. (Even though they cannot be read back in.) Closes pandas-dev#10564 DOC: typo A few changes in docs
1 parent 1fa63dc commit 3072e48

File tree

2 files changed

+1
-29
lines changed

2 files changed

+1
-29
lines changed

doc/source/whatsnew/v0.17.0.txt

-2
Original file line numberDiff line numberDiff line change
@@ -674,13 +674,11 @@ Performance Improvements
674674

675675
Bug Fixes
676676
~~~~~~~~~
677-
<<<<<<< HEAD
678677
- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
679678
=======
680679

681680

682681
- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
683-
>>>>>>> updating examples and the bug fix
684682
- Bug in ``DataFrame.apply`` when function returns categorical series. (:issue:`9573`)
685683
- Bug in ``to_datetime`` with invalid dates and formats supplied (:issue:`10154`)
686684
- Bug in ``Index.drop_duplicates`` dropping name(s) (:issue:`10115`)

pandas/tests/test_generic.py

+1-27
Original file line numberDiff line numberDiff line change
@@ -799,41 +799,15 @@ def test_nan_interpolate(self):
799799
tm._skip_if_no_scipy()
800800
result = s.interpolate(method='polynomial', order=1)
801801
assert_series_equal(result, expected)
802-
<<<<<<< HEAD
803-
<<<<<<< HEAD
804-
805-
# GH #10633
806-
=======
807-
# GH #10633: first attempt
808-
>>>>>>> d992cd0... Updated test
809-
=======
810802

811803
# GH #10633
812-
>>>>>>> 5a5407e... updating examples and the bug fix
813-
def test_interpolate_spline(self):
814-
np.random.seed(1)
815-
s = pd.Series(np.arange(10)**2)
816-
s[np.random.randint(0,9,3)] = np.nan
817-
with tm.assertRaises(ValueError):
818-
s.interpolate(method='spline')
819-
<<<<<<< HEAD
820-
<<<<<<< HEAD
821-
=======
822-
>>>>>>> 027a5e7... Updating based on feedback
823-
824804
def test_interpolate_spline(self):
825805
np.random.seed(1)
826806
t = pd.Series(np.arange(10)**2)
827807
t[np.random.randint(0,9,3)] = np.nan
828808
with tm.assertRaises(ValueError):
829809
t.interpolate(method='spline', order=0)
830-
<<<<<<< HEAD
831-
=======
832-
>>>>>>> d992cd0... Updated test
833-
=======
834-
>>>>>>> 027a5e7... Updating based on feedback
835-
836-
810+
837811
def test_nan_irregular_index(self):
838812
s = Series([1, 2, np.nan, 4], index=[1, 3, 5, 9])
839813
result = s.interpolate()

0 commit comments

Comments
 (0)