File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ pandas 0.11.1
112
112
- added top-level ``pd.read_sql `` and ``to_sql `` DataFrame methods
113
113
- the ``method `` and ``axis `` arguments of ``DataFrame.replace() `` are
114
114
deprecated
115
+ - Implement ``__nonzero__ `` for ``NDFrame `` objects (GH3691 _, GH3696 _)
115
116
116
117
**Bug Fixes **
117
118
@@ -266,6 +267,8 @@ pandas 0.11.1
266
267
.. _GH3675 : https://github.com/pydata/pandas/issues/3675
267
268
.. _GH3682 : https://github.com/pydata/pandas/issues/3682
268
269
.. _GH3702 : https://github.com/pydata/pandas/issues/3702
270
+ .. _GH3691 : https://github.com/pydata/pandas/issues/3691
271
+ .. _GH3696 : https://github.com/pydata/pandas/issues/3696
269
272
270
273
pandas 0.11.0
271
274
=============
Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ API changes
88
88
89
89
- Add the keyword ``allow_duplicates`` to ``DataFrame.insert`` to allow a duplicate column
90
90
to be inserted if ``True``, default is ``False`` (same as prior to 0.11.1) (GH3679_)
91
+ - Implement ``__nonzero__`` for ``NDFrame`` objects (GH3691_, GH3696_)
92
+
91
93
92
94
- IO api
93
95
You can’t perform that action at this time.
0 commit comments