-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
BUG: Fix TimeFormatter behavior with fractional seconds #18552
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
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9efa68c
Fix TimeFormatter for fractional seconds
nmartensen 9a78cd7
TimeFormatter: use round() for microseconds
nmartensen c86238c
TimeFormatter: Only show seconds if non-zero
nmartensen 91bf9b2
Add some TimeFormatter test comparisons
nmartensen e7d5b0d
Add whatsnew entry
nmartensen 1a11153
simplify
nmartensen d7fa51f
TimeFormatter: Add __call__ docstring
nmartensen 8157c35
test_converter::test_time_formatter: comment, formatting
nmartensen 75ae4f1
test_datetimelike::test_time*: make testing tick labels actually work
nmartensen 9b8bde4
test_datetimelike::test_time: update expected results
nmartensen c1ace38
TimeFormatter: Docstring: add parameters and returns sections
nmartensen 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -236,7 +236,28 @@ def test_conversion_outofbounds_datetime(self): | |
assert rs == xp | ||
|
||
def test_time_formatter(self): | ||
self.tc(90000) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add the issue number here as a comment |
||
# issue 18478 | ||
|
||
# time2num(datetime.time.min) | ||
rs = self.tc(0) | ||
xp = '00:00' | ||
assert rs == xp | ||
|
||
# time2num(datetime.time.max) | ||
rs = self.tc(86399.999999) | ||
xp = '23:59:59.999999' | ||
assert rs == xp | ||
|
||
# some other times | ||
rs = self.tc(90000) | ||
xp = '01:00' | ||
assert rs == xp | ||
rs = self.tc(3723) | ||
xp = '01:02:03' | ||
assert rs == xp | ||
rs = self.tc(39723.2) | ||
xp = '11:02:03.200' | ||
assert rs == xp | ||
|
||
def test_dateindex_conversion(self): | ||
decimals = 9 | ||
|
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
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.
can you add a doc-string here
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.
cam you add a Parameters sections
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.
and a Returns
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.
done