We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff5b29e commit 3ff71daCopy full SHA for 3ff71da
doc/source/release.rst
@@ -155,6 +155,7 @@ Bug Fixes
155
- Regression in ``.get(None)`` indexing from 0.12 (:issue:`5652`)
156
- Subtle ``iloc`` indexing bug, surfaced in (:issue:`6059`)
157
- Bug with insert of strings into DatetimeIndex (:issue:`5818`)
158
+ - Fixed unicode bug in to_html/HTML repr (:issue:`6098`)
159
160
pandas 0.13.0
161
-------------
pandas/core/format.py
@@ -767,7 +767,7 @@ def _column_header():
767
levels)):
768
name = self.columns.names[lnum]
769
row = [''] * (row_levels - 1) + ['' if name is None
770
- else str(name)]
+ else com.pprint_thing(name)]
771
772
tags = {}
773
j = len(row)
0 commit comments