Merge "Update docstring on stop watch to reflect monotonic lib. usage"

This commit is contained in:
Jenkins 2015-09-28 20:45:07 +00:00 committed by Gerrit Code Review
commit e5963a29ef

View File

@ -332,9 +332,9 @@ class StopWatch(object):
when operations are performed in a thread-safe manner on these objects by
wrapping those operations with locks.
It will try to use ``time.monotonic`` and then attempt to use the
`monotonic`_ pypi library and then fallback to using the non-monotonic
``time.time``.
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.python.org/pypi/monotonic/
"""