Skip to content

Commit 50ae526

Browse files
committed
RLS: release notes
1 parent 06aea58 commit 50ae526

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

RELEASE.rst

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ pandas 0.8.0
4141
- Add ``match`` function to API (#502)
4242
- Add Cython-optimized first, last, min, max, prod functions to GroupBy (#994,
4343
#1043)
44+
- Dates can be split across multiple columns (#1227, #1186)
45+
- Add experimental support for converting pandas DataFrame to R data.frame
46+
via rpy2 (#350, #1212)
4447

4548
**Improvements to existing features**
4649

@@ -53,6 +56,7 @@ pandas 0.8.0
5356
- Can pass arrays in addition to column names to DataFrame.set_index (#402)
5457
- Improve the speed of "square" reindexing of homogeneous DataFrame objects
5558
by significant margin (#836)
59+
- Handle more dtypes when passed MaskedArrays in DataFrame constructor (#406)
5660

5761
**API Changes**
5862

pandas/io/tests/test_parsers.py

+4
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ def test_multiple_date_cols_with_header(self):
156156
df = read_csv(StringIO(data), parse_dates={'nominal': [1, 2]})
157157
self.assert_(not isinstance(df.nominal[0], basestring))
158158

159+
def test_multiple_skts_example(self):
160+
data = "year, month, a, b\n 2001, 01, 0.0, 10.\n 2001, 02, 1.1, 11."
161+
pass
162+
159163
def test_malformed(self):
160164
# all
161165
data = """ignore

0 commit comments

Comments
 (0)