1 # -*- coding: utf-8 -*-
2 # SPDX-License-Identifier: LGPL-2.1-only
4 # Copyright (C) 2020 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
10 # Support for deprecation of time.clock().
11 # Deprecated since python 3.3 and removed in python 3.8.
12 # See PEP 418 for more details.
14 if sys
.version_info
> (3,2):
15 clock
= time
.perf_counter()
This page took 0.029855 seconds and 4 git commands to generate.