Skip to content

Commit 03fd748

Browse files
committed
Add whatsnew entry
1 parent 8c2a476 commit 03fd748

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doc/source/whatsnew/v1.0.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Categorical
8888
^^^^^^^^^^^
8989

9090
- Added test to assert the :func:`fillna` raises the correct ValueError message when the value isn't a value from categories (:issue:`13628`)
91-
-
91+
- Bug in :meth:`CombinedDatetimelikeProperties.__new__` and :meth:`Properties._delegate_property_get` was resulting in properties being applied to categories rather than values (:issue:`27952`)
9292
-
9393

9494

pandas/core/indexes/accessors.py

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def _delegate_property_get(self, name):
7474

7575
result = np.asarray(result)
7676

77-
# blow up if we operate on categories
7877
if self.orig is not None:
7978
index = self.orig.index
8079
else:

0 commit comments

Comments
 (0)