8000 Implement npy_dtime.pyx by jbrockmendel · Pull Request #17805 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Implement npy_dtime.pyx #17805

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

Merged
merged 17 commits into from
Oct 29, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup typo
  • Loading branch information
jbrockmendel committed Oct 6, 2017
commit 76cad9ab9c7909c28ee8370fecc04fce782a4298
2 changes: 1 addition & 1 deletion pandas/_libs/tslibs/strptime.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def array_strptime(ndarray[object] values, object fmt,

iresult[i] = dtstruct_to_dt64(&dts)
try:
check_dts_bounds(&dts):
check_dts_bounds(&dts)
except ValueError:
if is_coerce:
iresult[i] = NPY_NAT
Expand Down
0