8000 [3.9] bpo-33381: [doc] strftime's %f option may pad zeros on the left or the right (GH-29801) by miss-islington · Pull Request #29863 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-33381: [doc] strftime's %f option may pad zeros on the left or the right (GH-29801) #29863

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 1 commit into from
Nov 30, 2021
Merged
Changes from all commits
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
bpo-33381: [doc] strftime's %f option may pad zeros on the left or th…
…e right (GH-29801)

(cherry picked from commit f97ec09)

Co-authored-by: Vishal Pandey <vishalpandeyviptsk@gmail.com>
  • Loading branch information
vishalpandeynits authored and miss-islington committed Nov 30, 2021
commit bf4a0e343ce7726652dff46364b6da2cdba1541e
4 changes: 2 additions & 2 deletions Doc/library/datetime.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2359,8 +2359,8 @@ requires, and these work on all platforms with a standard C implementation.
| | decimal number. | | \(9) |
+-----------+--------------------------------+------------------------+-------+
| ``%f`` | Microsecond as a decimal | 000000, 000001, ..., | \(5) |
| | number, zero-padded on the | 999999 | |
| | left. | | |
| | number, zero-padded to 6 | 999999 | |
| | digits. | | |
+-----------+--------------------------------+------------------------+-------+
| ``%z`` | UTC offset in the form | (empty), +0000, | \(6) |
| | ``±HHMM[SS[.ffffff]]`` (empty | -0400, +1030, | |
Expand Down
0