From ac33a9d432bbcd548d8afcfc41213b0a341ec48c Mon Sep 17 00:00:00 2001 From: jreback Date: Tue, 11 Dec 2012 17:04:55 -0500 Subject: [PATCH 1/3] DOC: broken display in 2 places in Updated PyTables Support section --- doc/source/v0.10.0.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/v0.10.0.txt b/doc/source/v0.10.0.txt index c23aeb9e04406..f7387edda4174 100644 --- a/doc/source/v0.10.0.txt +++ b/doc/source/v0.10.0.txt @@ -221,7 +221,7 @@ Updated PyTables Support # remove all nodes under this level store.remove('food') - store + store - added mixed-dtype support! @@ -230,7 +230,8 @@ Updated PyTables Support df['string'] = 'string' df['int'] = 1 store.append('df',df) - df1 = store.select('df') df1 + df1 = store.select('df') + df1 df1.get_dtype_counts() - performance improvments on table writing From a465c377d9833bde6eee90a283dc0e6f0d2f4b1e Mon Sep 17 00:00:00 2001 From: jreback Date: Wed, 12 Dec 2012 08:07:46 -0500 Subject: [PATCH 2/3] duplicate density mention for SparseSeries --- RELEASE.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index 26f3265029696..4c18ea3af84c8 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -84,7 +84,6 @@ pandas 0.10.0 - Add support for Panel4D, a named 4 Dimensional stucture - Add support for ndpanel factory functions, to create custom, domain-specific N-Dimensional containers - - 'density' property in `SparseSeries` (#2384) **API Changes** From e3d91842b7015bbabc87e4bb40fa220507323b98 Mon Sep 17 00:00:00 2001 From: jreback Date: Wed, 12 Dec 2012 09:00:12 -0500 Subject: [PATCH 3/3] DOC: added compatibiliy warning in whatsnew and io for HDFStore --- doc/source/io.rst | 7 +++++++ doc/source/v0.10.0.txt | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/doc/source/io.rst b/doc/source/io.rst index b8d310a920533..bbf473628cafb 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -1158,6 +1158,13 @@ Notes & Caveats store.append('wp_big_strings', wp) store.select('wp_big_strings') +Compatibility +~~~~~~~~~~~~~ + +0.10 of ``HDFStore`` is backwards compatible for reading tables created in a prior version of pandas, +however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire +file and write it out using the new format to take advantage of the updates. + Performance ~~~~~~~~~~~ diff --git a/doc/source/v0.10.0.txt b/doc/source/v0.10.0.txt index f7387edda4174..4e044d41bc331 100644 --- a/doc/source/v0.10.0.txt +++ b/doc/source/v0.10.0.txt @@ -161,7 +161,6 @@ Updated PyTables Support :ref:`Docs ` for PyTables ``Table`` format & several enhancements to the api. Here is a taste of what to expect. - .. ipython:: python :suppress: :okexcept: @@ -259,6 +258,12 @@ Updated PyTables Support import os os.remove('store.h5') +**Compatibility** + +0.10 of ``HDFStore`` is backwards compatible for reading tables created in a prior version of pandas, +however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire +file and write it out using the new format to take advantage of the updates. + N Dimensional Panels (Experimental) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~