-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: pandas.to_datetime() does not respect exact format string with ISO8601 #49333
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
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
45f82c3
initial format support
nikitaved e473adb
set exact=False default in objects_to_datetime
a6ea6d0
:label: typing
8fede1f
simplify
2e21e71
Merge remote-tracking branch 'upstream/main' into pr/nikitaved-qssumm…
afc4d96
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
12721b0
replace macro with function
0531967
clean up
a571753
:memo: restore docstring
e814a2e
inline
19c34f8
set format default to None
70fb820
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
eb50dfb
clean up
ac61ac5
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
0dd7407
remove function, perform check inline
4d35ea7
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
3acfdf6
only compare *format++ if format_len
f3060c9
clean up
7310e13
typing
b18ade7
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
3ceb1ee
split out branches
bde5ef9
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
080f018
use compare_format function
031e0e3
remove tmp variable
01e8bd1
Merge remote-tracking branch 'upstream/main' into pr/nikitaved/qssumm…
c1e6bc2
Add co-authors
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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Orthogonal to this but if you want to work more with the C codebase I think we should just replace
get_c_string_buf_and_size
withPyUnicode_AsUTF8AndSize
directly; the former might have served a purpose with the Py2/3 transition but is just an unnecessary layer at this point