Skip to content

Commit 2f7f9bd

Browse files
committed
DOC: release notes update
1 parent cd7b115 commit 2f7f9bd

File tree

2 files changed

+12
-29
lines changed

2 files changed

+12
-29
lines changed

RELEASE.rst

+3-24
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,7 @@ pandas 0.11.1
6363
to append an index with a different name than the existing
6464
- support datelike columns with a timezone as data_columns (GH2852_)
6565
- table writing performance improvements.
66-
<<<<<<< HEAD
67-
<<<<<<< HEAD
68-
=======
69-
- support python3 (via ``PyTables 3.0.0``)
70-
>>>>>>> 116ab91... DOC: docstring/release notes updates for py3k
71-
=======
72-
- support py3 (via ``PyTables 3.0.0``)
73-
>>>>>>> ab16d43... ENH: partial py3k support
66+
- support python3 (via ``PyTables 3.0.0``) (GH3750_)
7467
- Add modulo operator to Series, DataFrame
7568
- Add ``date`` method to DatetimeIndex
7669
- Simplified the API and added a describe method to Categorical
@@ -87,29 +80,14 @@ pandas 0.11.1
8780

8881
**API Changes**
8982

90-
<<<<<<< HEAD
91-
<<<<<<< HEAD
92-
- When removing an object from a ``HDFStore``, ``remove(key)`` raises
93-
``KeyError`` if the key is not a valid store object.
94-
- In an ``HDFStore``, raise a ``TypeError`` on passing ``where`` or ``columns``
95-
to select with a Storer; these are invalid parameters at this time
96-
=======
97-
=======
98-
>>>>>>> ab16d43... ENH: partial py3k support
9983
- ``HDFStore``
10084

10185
- When removing an object, ``remove(key)`` raises
10286
``KeyError`` if the key is not a valid store object.
10387
- raise a ``TypeError`` on passing ``where`` or ``columns``
10488
to select with a Storer; these are invalid parameters at this time
105-
<<<<<<< HEAD
10689
- can now specify an ``encoding`` option to ``append/put``
107-
to enable alternate encodings
108-
>>>>>>> 116ab91... DOC: docstring/release notes updates for py3k
109-
=======
110-
- can now specify an ``encoding`` option to ``append`` and ``select``
111-
to enable alternate encodings
112-
>>>>>>> ab16d43... ENH: partial py3k support
90+
to enable alternate encodings (GH3750_)
11391
- The repr() for (Multi)Index now obeys display.max_seq_items rather
11492
then numpy threshold print options. (GH3426_, GH3466_)
11593
- Added mangle_dupe_cols option to read_table/csv, allowing users
@@ -315,6 +293,7 @@ pandas 0.11.1
315293
.. _GH3740: https://github.com/pydata/pandas/issues/3740
316294
.. _GH3748: https://github.com/pydata/pandas/issues/3748
317295
.. _GH3741: https://github.com/pydata/pandas/issues/3741
296+
.. _GH3750: https://github.com/pydata/pandas/issues/3750
318297

319298
pandas 0.11.0
320299
=============

pandas/io/pytables.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class HDFStore(object):
218218
complevel : int, 1-9, default 0
219219
If a complib is specified compression will be applied
220220
where possible
221-
complib : {'zliu', 'bzip2', 'lzo', 'blosc', None}, default None
221+
complib : {'zlib', 'bzip2', 'lzo', 'blosc', None}, default None
222222
If complevel is > 0 apply compression to objects written
223223
in the store wherever possible
224224
fletcher32 : bool, default False
@@ -711,7 +711,8 @@ def create_table_index(self, key, **kwargs):
711711
def groups(self):
712712
""" return a list of all the top-level nodes (that are not themselves a pandas storage object) """
713713
_tables()
714-
return [ g for g in self._handle.walkNodes() if getattr(g._v_attrs,'pandas_type',None) or getattr(g,'table',None) or (isinstance(g,_table_mod.table.Table) and g._v_name != u'table') ]
714+
return [ g for g in self._handle.walkNodes() if getattr(g._v_attrs,'pandas_type',None) or getattr(
715+
g,'table',None) or (isinstance(g,_table_mod.table.Table) and g._v_name != u'table') ]
715716

716717
def get_node(self, key):
717718
""" return the node with the key or None if it does not exist """
@@ -731,7 +732,8 @@ def get_storer(self, key):
731732
s.infer_axes()
732733
return s
733734

734-
def copy(self, file, mode = 'w', propindexes = True, keys = None, complib = None, complevel = None, fletcher32 = False, overwrite = True):
735+
def copy(self, file, mode = 'w', propindexes = True, keys = None, complib = None, complevel = None,
736+
fletcher32 = False, overwrite = True):
735737
""" copy the existing store to a new file, upgrading in place
736738
737739
Parameters
@@ -845,7 +847,8 @@ def error(t):
845847
except:
846848
error('_TABLE_MAP')
847849

848-
def _write_to_group(self, key, value, index=True, table=False, append=False, complib=None, encoding=None, **kwargs):
850+
def _write_to_group(self, key, value, index=True, table=False, append=False,
851+
complib=None, encoding=None, **kwargs):
849852
group = self.get_node(key)
850853

851854
# remove the node if we are not appending
@@ -870,7 +873,8 @@ def _write_to_group(self, key, value, index=True, table=False, append=False, com
870873
group = self._handle.createGroup(path, p)
871874
path = new_path
872875

873-
s = self._create_storer(group, value, table=table, append=append, encoding=encoding, **kwargs)
876+
s = self._create_storer(group, value, table=table, append=append,
877+
encoding=encoding, **kwargs)
874878
if append:
875879
# raise if we are trying to append to a non-table,
876880
# or a table that exists (and we are putting)

0 commit comments

Comments
 (0)