Skip to content

Commit 34db250

Browse files
committed
DOC: release notes
1 parent f80bfc1 commit 34db250

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

RELEASE.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pandas 0.6.1
4141
- DataFrame.align can accept Series arguments, add axis keyword (GH #461)
4242
- Implement new SparseList and SparseArray data structures. SparseSeries now
4343
derives from SparseArray (GH #463)
44+
- max_columns / max_rows options in set_printoptions (PR #453)
4445

4546
**Improvements to existing features**
4647

@@ -54,6 +55,10 @@ pandas 0.6.1
5455
- Use same float formatting function for Series.__repr__ (PR #420)
5556
- Use available console width to output DataFrame columns (PR #453)
5657
- Accept ndarrays when setting items in Panel (GH #452)
58+
- Infer console width when printing __repr__ of DataFrame to console (PR
59+
#453)
60+
- Optimize scalar value lookups in the general case by 25% or more in Series
61+
and DataFrame
5762

5863
**Bug fixes**
5964

@@ -70,6 +75,8 @@ pandas 0.6.1
7075
(GH #421)
7176
- Implement DateOffset.__ne__ causing downstream bug (GH #456)
7277
- Fix __doc__-related issue when converting py -> pyo with py2exe
78+
- Bug fix in left join Cython code with duplicate monotonic labels
79+
- Fix bug when unstacking multiple levels described in #451
7380

7481
Thanks
7582
------
@@ -78,6 +85,7 @@ Thanks
7885
- Jev Kuznetsov
7986
- Wouter Overmeire
8087
- Fernando Perez
88+
- Christian Prinoth
8189
- Joon Ro
8290
- Chang She
8391
- Chris Uga

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ def _append_same_columns(self, other, new_index):
24802480
if self._is_mixed_type:
24812481
new_data = self._append_column_by_column(other)
24822482
else:
2483-
new_data= np.concatenate((self.values, other.values), axis=0)
2483+
new_data = np.concatenate((self.values, other.values), axis=0)
24842484
return self._constructor(new_data, index=new_index,
24852485
columns=self.columns)
24862486

0 commit comments

Comments
 (0)