From c4746ef64300b4869da905f47a8dbde6f1ad294e Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Fri, 5 May 2023 11:52:41 +0000 Subject: [PATCH] Remove reference to monotonic on PyPI The monotonic module is no longer in use and this comment is left here incorrectly. Change-Id: Ie5f18dcd2d36cd637bfd799bde664ec13b51a711 --- oslo_utils/timeutils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/oslo_utils/timeutils.py b/oslo_utils/timeutils.py index ba45fda0..da0f4b1f 100644 --- a/oslo_utils/timeutils.py +++ b/oslo_utils/timeutils.py @@ -339,12 +339,6 @@ class StopWatch(object): when operations are performed in a thread-safe manner on these objects by wrapping those operations with locks. - It will use the `monotonic`_ pypi library to find an appropriate - monotonically increasing time providing function (which typically varies - depending on operating system and python version). - - .. _monotonic: https://pypi.org/project/monotonic/ - .. versionadded:: 1.4 """ _STARTED = 'STARTED'