-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix uncaught OutOfBounds in array_to_datetime #19612
Conversation
Hello @jbrockmendel! Thanks for updating the PR. Cheers ! There are no PEP8 issues in this Pull Request. 🍻 Comment last updated on February 10, 2018 at 18:15 Hours UTC |
Codecov Report
@@ Coverage Diff @@
## master #19612 +/- ##
=======================================
Coverage 91.59% 91.59%
=======================================
Files 150 150
Lines 48807 48807
=======================================
Hits 44704 44704
Misses 4103 4103
Continue to review full report at Codecov.
|
pandas/tests/tslibs/test_tslib.py
Outdated
import pandas.util.testing as tm | ||
|
||
|
||
class TestArrayToDatetime(object): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm this should be in pandas/tests/indexes/datetimes/test_tools.py
. I know you are ceating new locations is fine. but would rather move all of tools testing there (in a new PR).
does this have a referenced issue? needs a whatsnew note |
None that I found. |
thanks! |
The call to convert_datetime_to_tsobject has a check_dts_bounds in it. One of the usages in array_to_datetime gets that right, the other misses it.