Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
42b1c7d
FIX for set_categories issue #17509
Giftlin Sep 13, 2017
3843746
FIX for set_categories issue #17509
Giftlin Sep 13, 2017
4f731cf
FIX for set_categories issue #17509
Giftlin Sep 13, 2017
a4ba634
Update categorical.py
Giftlin Sep 13, 2017
b817366
Update categorical.py
Giftlin Sep 13, 2017
aa782dd
Test for the changes
Giftlin Sep 15, 2017
70089a4
Merge pull request #2 from Giftlin/patch-7
Giftlin Sep 15, 2017
4c30c96
Space removed
Giftlin Sep 15, 2017
42afe67
- Bug in preserving name in set_categories. (:issue:`17509`)
Giftlin Sep 15, 2017
73a6713
Merge pull request #3 from Giftlin/patch-10
Giftlin Sep 15, 2017
8f888ef
Update v0.21.0.txt
Giftlin Sep 17, 2017
f09c9d5
Update test_categorical.py
Giftlin Sep 17, 2017
8781d64
Update v0.21.0.txt
Giftlin Sep 17, 2017
2ed3740
Update test_categorical.py
Giftlin Sep 17, 2017
8192515
Update test_categorical.py
Giftlin Sep 17, 2017
9007df3
Update v0.21.0.txt
Giftlin Sep 17, 2017
72c9ebe
Update v0.21.0.txt
Giftlin Sep 17, 2017
90ff725
Update test_categorical.py
Giftlin Sep 17, 2017
9e737c8
Merge pull request #4 from Giftlin/Giftlin-param_test_categorical.py
Giftlin Sep 17, 2017
f44a09a
Update v0.21.0.txt
Giftlin Sep 17, 2017
3b40433
Lint error fix
Giftlin Sep 17, 2017
b9ab8d3
Merge pull request #5 from Giftlin/Giftlin-lint-error-patch
Giftlin Sep 17, 2017
e21fe08
Removed space
Giftlin Sep 17, 2017
9730757
Lint error
Giftlin Sep 17, 2017
1749a1c
Merge pull request #6 from Giftlin/Giftlinlint
Giftlin Sep 17, 2017
5ae2453
Update test_categorical.py
Giftlin Sep 18, 2017
9f25ad9
Update test_categorical.py
Giftlin Sep 18, 2017
6b4f0f2
Update test_categorical.py
Giftlin Sep 18, 2017
68a2d86
Update v0.21.0.txt
Giftlin Sep 18, 2017
a94d52a
Update v0.21.0.txt
Giftlin Sep 18, 2017
73f5241
Update categorical.rst
Giftlin Sep 18, 2017
f6e8aa9
Merge pull request #9 from Giftlin/Giftlin-patch-1-1
Giftlin Sep 18, 2017
d4bbe27
Merge pull request #7 from Giftlin/Giftlin-whatsnew
Giftlin Sep 18, 2017
7bb3378
Update test_categorical.py
Giftlin Sep 18, 2017
7f5ec9b
Merge pull request #10 from Giftlin/Giftlin-test_categorical.py-1
Giftlin Sep 18, 2017
ce78e6c
small edits
jorisvandenbossche Sep 18, 2017
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pandas/tests/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def test_getitem_listlike(self):
lambda x: x.cat.as_unordered(),
])
def test_getname_categorical_accessor(self, method):
# https://github.com/pandas-dev/pandas/issues/17509
s = pd.Series([1, 2, 3], name='A').astype('category')
expected = 'A'
result = method(s).name
Expand Down