Skip to content

Commit a0b05dd

Browse files
committed
DOC: minor release.rst changes
1 parent 2d28acb commit a0b05dd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

RELEASE.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ pandas 0.11.1
4343
- ``HDFStore``
4444
4545
- will retain index attributes (freq,tz,name) on recreation (GH3499_)
46-
- will warn with a AttributeConflictWarning if you are attempting to append
46+
- will warn with a ``AttributeConflictWarning`` if you are attempting to append
4747
an index with a different frequency than the existing, or attempting
4848
to append an index with a different name than the existing
4949
- support datelike columns with a timezone as data_columns (GH2852_)
5050
- table writing performance improvements.
5151

5252
**API Changes**
5353

54-
- When removing an object from a store, **store.remove(key)**, raises
55-
**KeyError** if **key** is not a valid store object.
54+
- When removing an object from a ``HDFStore``, ``remove(key)`` raises
55+
``KeyError`` if the key is not a valid store object.
5656
- The repr() for (Multi)Index now obeys display.max_seq_items rather
5757
then numpy threshold print options. (GH3426_, GH3466_)
5858
- Added mangle_dupe_cols option to read_table/csv, allowing users
@@ -76,8 +76,6 @@ pandas 0.11.1
7676
columns (GH3437_)
7777
- ``.loc`` was not raising when passed an integer list (GH3449_)
7878
- Unordered time series selection was misbehaving when using label slicing (GH3448_)
79-
- Duplicate indexes with getitem will return items in the correct order (GH3455_, GH3457_)
80-
- Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562_)
8179
- Fix sorting in a frame with a list of columns which contains datetime64[ns] dtypes (GH3461_)
8280
- DataFrames fetched via FRED now handle '.' as a NaN. (GH3469_)
8381
- Fix regression in a DataFrame apply with axis=1, objects were not being converted back
@@ -92,13 +90,15 @@ pandas 0.11.1
9290
- applymap on a DataFrame with a non-unique index now works
9391
(removed warning) (GH2786_), and fix (GH3230_)
9492
- Fix to_csv to handle non-unique columns (GH3495_)
93+
- Duplicate indexes with getitem will return items in the correct order (GH3455_, GH3457_)
94+
- Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562_)
9595
- Fixed bug in groupby with empty series referencing a variable before assignment. (GH3510_)
9696
- Fixed bug in mixed-frame assignment with aligned series (GH3492_)
9797
- Fixed bug in selecting month/quarter/year from a series would not select the time element
9898
on the last day (GH3546_)
9999
- Fixed a couple of MultiIndex rendering bugs in df.to_html() (GH3547_, GH3553_)
100100
- Properly convert np.datetime64 objects in a Series (GH3416_)
101-
- Raise a TypeError on invalid datetime/timedelta operations
101+
- Raise a ``TypeError`` on invalid datetime/timedelta operations
102102
e.g. add datetimes, multiple timedelta x datetime
103103
- Fix ``.diff`` on datelike and timedelta operations (GH3100_)
104104
- ``combine_first`` not returning the same dtype in cases where it can (GH3552_)

0 commit comments

Comments
 (0)