-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: encoding of categoricals in hdf serialization #10889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cc @cottrell I changed this a bit to explicity check for bytes, and doced this a bit. Seems ok to me, but can you check for |
@@ -765,3 +765,4 @@ Bug Fixes | |||
- Bug in ``read_msgpack`` where encoding is not respected (:issue:`10580`) | |||
- Bug preventing access to the first index when using ``iloc`` with a list containing the appropriate negative integer (:issue:`10547`, :issue:`10779`) | |||
- Bug in ``TimedeltaIndex`` formatter causing error while trying to save ``DataFrame`` with ``TimedeltaIndex`` using ``to_csv`` (:issue:`10833`) | |||
- Bug in ``Categorical`` hdf serialiation in presence of alternate encodings. (:issue:`10366`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in serialization
ea50146
to
c589faf
Compare
nosetests -v pandas.io.tests.test_pytables passed on my local python 3.4.3 build. I see other errors popping up as in the travis tests. |
c589faf
to
8609f6c
Compare
BUG: encoding of categoricals in hdf serialization
thanks @cottrell |
closes #10366
replaces #10454