Skip to content

Commit

Permalink
ENH: pickle support for Period pandas-dev#10439
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Spencer Carrucciu authored and springcoil committed Aug 22, 2015
1 parent 1fa63dc commit 3072e48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 29 deletions.
2 changes: 0 additions & 2 deletions doc/source/whatsnew/v0.17.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -674,13 +674,11 @@ Performance Improvements

Bug Fixes
~~~~~~~~~
<<<<<<< HEAD
- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
=======


- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
>>>>>>> updating examples and the bug fix
- Bug in ``DataFrame.apply`` when function returns categorical series. (:issue:`9573`)
- Bug in ``to_datetime`` with invalid dates and formats supplied (:issue:`10154`)
- Bug in ``Index.drop_duplicates`` dropping name(s) (:issue:`10115`)
Expand Down
28 changes: 1 addition & 27 deletions pandas/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,41 +799,15 @@ def test_nan_interpolate(self):
tm._skip_if_no_scipy()
result = s.interpolate(method='polynomial', order=1)
assert_series_equal(result, expected)
<<<<<<< HEAD
<<<<<<< HEAD

# GH #10633
=======
# GH #10633: first attempt
>>>>>>> d992cd0... Updated test
=======

# GH #10633
>>>>>>> 5a5407e... updating examples and the bug fix
def test_interpolate_spline(self):
np.random.seed(1)
s = pd.Series(np.arange(10)**2)
s[np.random.randint(0,9,3)] = np.nan
with tm.assertRaises(ValueError):
s.interpolate(method='spline')
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> 027a5e7... Updating based on feedback

def test_interpolate_spline(self):
np.random.seed(1)
t = pd.Series(np.arange(10)**2)
t[np.random.randint(0,9,3)] = np.nan
with tm.assertRaises(ValueError):
t.interpolate(method='spline', order=0)
<<<<<<< HEAD
=======
>>>>>>> d992cd0... Updated test
=======
>>>>>>> 027a5e7... Updating based on feedback



def test_nan_irregular_index(self):
s = Series([1, 2, np.nan, 4], index=[1, 3, 5, 9])
result = s.interpolate()
Expand Down

0 comments on commit 3072e48

Please sign in to comment.