File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,9 @@ pandas 0.11.0
131131 - Add ``time() `` method to DatetimeIndex (GH3180 _)
132132 - Return NA when using Series.str[...] for values that are not long enough
133133 (GH3223 _)
134+ - to_html() now accepts an optional "escape" argument to control reserved
135+ HTML character escaping (enabled by default) and escapes ``& ``, in addition
136+ to ``< `` and ``> ``. (GH2919 _)
134137
135138**API Changes **
136139
@@ -390,6 +393,7 @@ pandas 0.11.0
390393.. _GH3238 : https://github.com/pydata/pandas/issues/3238
391394.. _GH3258 : https://github.com/pydata/pandas/issues/3258
392395.. _GH3283 : https://github.com/pydata/pandas/issues/3283
396+ .. _GH2919 : https://github.com/pydata/pandas/issues/2919
393397
394398pandas 0.10.1
395399=============
Original file line number Diff line number Diff line change @@ -325,6 +325,10 @@ Enhancements
325325 - Treat boolean values as integers (values 1 and 0) for numeric
326326 operations. (GH2641_)
327327
328+ - to_html() now accepts an optional "escape" argument to control reserved
329+ HTML character escaping (enabled by default) and escapes ``&``, in addition
330+ to ``<`` and ``>``. (GH2919_)
331+
328332See the `full release notes
329333<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
330334on GitHub for a complete list.
@@ -350,3 +354,4 @@ on GitHub for a complete list.
350354.. _GH3070: https://github.com/pydata/pandas/issues/3070
351355.. _GH3075: https://github.com/pydata/pandas/issues/3075
352356.. _GH2641: https://github.com/pydata/pandas/issues/2641
357+ .. _GH2919: https://github.com/pydata/pandas/issues/2919
You can’t perform that action at this time.
0 commit comments