{{ message }}
bpo-29026: Clarify documentation of time.time#34
Merged
vstinner merged 3 commits intoFeb 16, 2017
Merged
Conversation
Clarify the documentation of time.time by more precisely defining what is meant by "seconds since the epoch" on most platforms. Additionally explain how gmtime and localtime may be used to extract calendar components and convert to a more common date format.
vstinner
approved these changes
Feb 12, 2017
Member
|
Thank you for the new doc. It contains more info on timezone (UTC) and leap seconds (excluded). |
Sorry, something went wrong.
vstinner
requested changes
Feb 13, 2017
vstinner
left a comment
Member
There was a problem hiding this comment.
Sorry, I saw a few more minor issues.
Sorry, something went wrong.
Codecov Report
@@ Coverage Diff @@
## master #34 +/- ##
==========================================
+ Coverage 82.37% 82.38% +0.01%
==========================================
Files 1427 1428 +1
Lines 350948 351138 +190
==========================================
+ Hits 289088 289294 +206
+ Misses 61860 61844 -16Continue to review full report at Codecov.
|
Sorry, something went wrong.
methane
approved these changes
Feb 16, 2017
vstinner
approved these changes
Feb 16, 2017
Member
|
Thanks! I merged the PR. |
Sorry, something went wrong.
Mariatta
referenced
this pull request
in Mariatta/cpython
Mar 3, 2017
* bpo-29026: Clarity documentation of time.time Clarify the documentation of time.time by more precisely defining what is meant by "seconds since the epoch" on most platforms. Additionally explain how gmtime and localtime may be used to extract calendar components and convert to a more common date format. * bpo-29026: Minor improvements for time.time doc * bpo-29026: Consistency fixes for time.time doc (cherry picked from commit 23557d5)
Mariatta
referenced
this pull request
in Mariatta/cpython
Mar 3, 2017
* bpo-29026: Clarity documentation of time.time Clarify the documentation of time.time by more precisely defining what is meant by "seconds since the epoch" on most platforms. Additionally explain how gmtime and localtime may be used to extract calendar components and convert to a more common date format. * bpo-29026: Minor improvements for time.time doc * bpo-29026: Consistency fixes for time.time doc (cherry picked from commit 23557d5)
Mariatta
added a commit
that referenced
this pull request
Mar 3, 2017
Mariatta
added a commit
that referenced
this pull request
Mar 3, 2017
tiran
pushed a commit
to tiran/cpython
that referenced
this pull request
Aug 21, 2022
munmap pages on shutdown, keep FILE open
jaraco
pushed a commit
to jaraco/cpython
that referenced
this pull request
Feb 17, 2023
API documentation. Closes python#16
oraluben
pushed a commit
to oraluben/cpython
that referenced
this pull request
Jun 25, 2023
* fix: mark interpreter frames as tier 2 or not * Test: Added tests for python#33 --------- Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
66 hidden items
Load more…
nanjekyejoannah
pushed a commit
to nanjekyejoannah/cpython
that referenced
this pull request
Feb 20, 2024
…h_recent_assumptions Warn for string cmp with new string warning assumptions
This was referenced Feb 11, 2025
picnixz
added a commit
to picnixz/cpython
that referenced
this pull request
Dec 8, 2025
* fix missing `PyLazyImport_CheckExact` * fix missing lazy-related symbols * fix missing lazy-related symbols * `extern` seems enough * Export _PyImport_LoadLazyImportTstate for JIT
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.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.
Clarify the documentation of time.time by more
precisely defining what is meant by "seconds since
the epoch" on most platforms. Additionally explain
how gmtime and localtime may be used to extract
calendar components and convert to a more common
date format.
@Haypo
https://bugs.python.org/issue29026