timeutils: deprecate isotime()
As Victor Stinner suggested, there is a superior alternative that is bug-free concerning timezone aware and unaware datetime, and that's the native datetime.datetime.isoformat() function. Let's deprecate our local isotime version. Change-Id: I35ef3205657481f2a49a060ccb199babe582ff7e
This commit is contained in:
parent
bb7eebb4c2
commit
5cad113739
@ -21,6 +21,7 @@ import calendar
|
||||
import datetime
|
||||
import time
|
||||
|
||||
from debtcollector import removals
|
||||
import iso8601
|
||||
import six
|
||||
|
||||
@ -47,8 +48,17 @@ except AttributeError:
|
||||
now = time.time
|
||||
|
||||
|
||||
@removals.remove(
|
||||
message="use datetime.datetime.isoformat()",
|
||||
version="1.6",
|
||||
removal_version="?",
|
||||
)
|
||||
def isotime(at=None, subsecond=False):
|
||||
"""Stringify time in ISO 8601 format."""
|
||||
"""Stringify time in ISO 8601 format.
|
||||
|
||||
.. deprecated:: > 1.5.0
|
||||
Use :func:`utcnow` and :func:`datetime.datetime.isoformat` instead.
|
||||
"""
|
||||
if not at:
|
||||
at = utcnow()
|
||||
st = at.strftime(_ISO8601_TIME_FORMAT
|
||||
@ -146,8 +156,18 @@ def utcnow():
|
||||
return datetime.datetime.utcnow()
|
||||
|
||||
|
||||
@removals.remove(
|
||||
message="use datetime.datetime.utcfromtimestamp().isoformat()",
|
||||
version="1.6",
|
||||
removal_version="?",
|
||||
)
|
||||
def iso8601_from_timestamp(timestamp, microsecond=False):
|
||||
"""Returns an iso8601 formatted date from timestamp."""
|
||||
"""Returns an iso8601 formatted date from timestamp.
|
||||
|
||||
.. deprecated:: > 1.5.0
|
||||
Use :func:`datetime.datetime.utcfromtimestamp` and
|
||||
:func:`datetime.datetime.isoformat` instead.
|
||||
"""
|
||||
return isotime(datetime.datetime.utcfromtimestamp(timestamp), microsecond)
|
||||
|
||||
|
||||
|
@ -14,3 +14,4 @@ iso8601>=0.1.9
|
||||
oslo.i18n>=1.5.0 # Apache-2.0
|
||||
netaddr>=0.7.12
|
||||
netifaces>=0.10.4
|
||||
debtcollector>=0.3.0 # Apache-2.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user