Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
BUG: String indexing against object dtype may raise AttributeError #14424
Conversation
sinhrks
added Bug Indexing
labels
Oct 14, 2016
sinhrks
added this to the
0.19.1
milestone
Oct 14, 2016
codecov-io
commented
Oct 14, 2016
•
Current coverage is 85.25% (diff: 100%)@@ master #14424 diff @@
==========================================
Files 140 140
Lines 50631 50632 +1
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
+ Hits 43167 43168 +1
Misses 7464 7464
Partials 0 0
|
| @@ -2936,6 +2936,9 @@ def _wrap_joined_index(self, joined, other): | ||
| name = self.name if self.name == other.name else None | ||
| return Index(joined, name=name) | ||
| + def _get_string_slice(self, key, use_lhs=True, use_rhs=True): |
jorisvandenbossche
Oct 14, 2016
Owner
Can you add a docstring or comment explaining where this is overwritten / used ?
|
Small comment, looks good for the rest |
jorisvandenbossche
merged commit 233d51d
into pandas-dev:master
Oct 22, 2016
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
|
@sinhrks Thanks! |
sinhrks
deleted the
sinhrks:partial_string_bug branch
Oct 23, 2016
jorisvandenbossche
added a commit
to jorisvandenbossche/pandas
that referenced
this pull request
Nov 2, 2016
|
|
sinhrks + jorisvandenbossche |
920122c
|
amolkahat
added a commit
to amolkahat/pandas
that referenced
this pull request
Nov 26, 2016
|
|
sinhrks + amolkahat |
9e0dc2e
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sinhrks commentedOct 14, 2016
git diff upstream/master | flake8 --diffString indexing may raise
AttributeError, rather thanKeyError.