Fix: python agent: 'time' has no attribute 'clock'
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 17 Jun 2020 22:40:22 +0000 (18:40 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 30 Jun 2020 15:11:42 +0000 (11:11 -0400)
commit74211da04fac64abca20883d03bab5bdd80cf5af
treead3ea8bdff6e8bfa7ee94bc75e2edc63d487ffa5
parent3967aba20953d5160df02dc1507073621c3077c1
Fix: python agent: 'time' has no attribute 'clock'

The time.clock() function was removed in python 3.8 and is marked as
deprecated since python 3.3. See PEP 418 for more details [1].

Solution
=====

When the python version is greater than 3.2 use the
`time.perf_counter()` function [2]. Otherwise, fall back to
`time.clock()`.

Introduce a compat module to the lttngust agent package providing the
`_clock` function.

[1] https://www.python.org/dev/peps/pep-0418/
[2] https://docs.python.org/3/library/time.html#time.perf_counter

Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I3d6d8b24309d45d43b634dc2a6b4d5dbc12da3aa
configure.ac
python-lttngust/lttngust/agent.py
python-lttngust/lttngust/compat.py [new file with mode: 0644]
python-lttngust/lttngust/debug.py
This page took 0.024866 seconds and 5 git commands to generate.