Skip to content

Commit 49dab2a

Browse files
committed
DOC: release notes, python 2.5 product compat
1 parent 02ef2c5 commit 49dab2a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

RELEASE.rst

+3
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ pandas 0.7.0
236236
__setitem__ (GH #669)
237237
- Fix downstream bug in pivot_table caused by integer level names in
238238
MultiIndex (GH #678)
239+
- Fix SparseSeries.combine_first when passed a dense Series (GH #687)
240+
- Fix performance regression in HDFStore loading when DataFrame or Panel
241+
stored in table format with datetimes
239242

240243
Thanks
241244
------

pandas/tools/tests/test_pivot.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,12 @@ def _check_output(res, col, rows=['A', 'B'], cols=['C']):
130130

131131
def test_pivot_integer_columns(self):
132132
# caused by upstream bug in unstack
133-
import itertools
133+
from pandas.util.compat import product
134134
import datetime
135135
import pandas
136136

137137
d = datetime.date.min
138-
data = list(itertools.product(
139-
['foo', 'bar'], ['A', 'B', 'C'], ['x1', 'x2'],
138+
data = list(product(['foo', 'bar'], ['A', 'B', 'C'], ['x1', 'x2'],
140139
[d + datetime.timedelta(i) for i in xrange(20)], [1.0]))
141140
df = pandas.DataFrame(data)
142141
table = df.pivot_table(values=4, rows=[0,1,3],cols=[2])

0 commit comments

Comments
 (0)