diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-06-12 20:46:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-06-12 20:46:37 (GMT) |
commit | 2b89fdf7eb17b5ca3928aa3c2f6552e79386c677 (patch) | |
tree | 644b67cd605fd28d1b8d676b79787cf03fd4d3df /Misc | |
parent | bda4b8802c9693cd1c6f97cc09e34c4f63b030ef (diff) | |
download | cpython-2b89fdf7eb17b5ca3928aa3c2f6552e79386c677.zip cpython-2b89fdf7eb17b5ca3928aa3c2f6552e79386c677.tar.gz cpython-2b89fdf7eb17b5ca3928aa3c2f6552e79386c677.tar.bz2 |
PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result
Fix also its value on Windows and Linux according to its documentation:
"adjustable" indicates if the clock *can be* adjusted, not if it is or was
adjusted.
In most cases, it is not possible to indicate if a clock is or was adjusted.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -21,6 +21,8 @@ Core and Builtins Library ------- +- Rename adjusted attribute to adjustable in time.get_clock_info() result. + - Issue #3518: Remove references to non-existent BaseManager.from_address() method. |