Skip to content

Commit dfc2813

Browse files
committed
add whatsnew
1 parent 722ca9b commit dfc2813

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/source/whatsnew/v1.3.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ Other
429429
- Bug in :class:`Index` constructor sometimes silently ignorning a specified ``dtype`` (:issue:`38879`)
430430
- Bug in constructing a :class:`Series` from a list and a :class:`PandasDtype` (:issue:`39357`)
431431
- Bug in :class:`Styler` which caused CSS to duplicate on multiple renders. (:issue:`39395`)
432+
- ``inspect.getmembers(Series)`` no longer raises an ``AbstractMethodError`` (:issue:`38782`).
432433
-
433434

434435
.. ---------------------------------------------------------------------------

pandas/tests/series/test_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def test_attrs(self):
172172

173173
@skip_if_no("jinja2")
174174
def test_inspect_getmembers(self):
175-
# GH38740
175+
# GH38782
176176
ser = Series()
177177
with tm.assert_produces_warning(None):
178178
inspect.getmembers(ser)

0 commit comments

Comments
 (0)