summaryrefslogtreecommitdiff
blob: 1ba5fee7d87e4949162180ba1d8ec75321cfeb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From c52a023b8a17e4346c66a8fddee69b40b327eae7 Mon Sep 17 00:00:00 2001
From: MartB <mart.b@outlook.de>
Date: Thu, 28 Nov 2019 21:00:59 +0100
Subject: [PATCH] Replace time.clock() with time.perf_counter()

.clock() got removed in python 3.8 and was marked as deprecated since 3.3
(https://github.com/python/cpython/pull/13270)
---
 include_server/parse_file.py | 4 ++--
 include_server/statistics.py | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include_server/parse_file.py b/include_server/parse_file.py
index d1dcc74..f5d78b7 100755
--- a/include_server/parse_file.py
+++ b/include_server/parse_file.py
@@ -272,7 +272,7 @@ def Parse(self, filepath, symbol_table):
 
     assert isinstance(filepath, str)
     self.filepath = filepath
-    parse_file_start_time = time.clock()
+    parse_file_start_time = time.perf_counter()
     statistics.parse_file_counter += 1
 
     includepath_map_index = self.includepath_map.Index
@@ -338,6 +338,6 @@ def Parse(self, filepath, symbol_table):
                       expr_includes, next_includes)
 
 
-    statistics.parse_file_total_time += time.clock() - parse_file_start_time
+    statistics.parse_file_total_time += time.perf_counter() - parse_file_start_time
 
     return (quote_includes, angle_includes, expr_includes, next_includes)
diff --git a/include_server/statistics.py b/include_server/statistics.py
index 9677af3..7bc9cb8 100755
--- a/include_server/statistics.py
+++ b/include_server/statistics.py
@@ -62,13 +62,13 @@ def StartTiming():
   global start_time, translation_unit_counter
   """Mark the start of a request to find an include closure."""
   translation_unit_counter += 1
-  start_time = time.clock()
+  start_time = time.perf_counter()
 
 
 def EndTiming():
   """Mark the end of an include closure calculation."""
   global translation_unit_time, min_time, max_time, total_time
-  translation_unit_time = time.clock() - start_time
+  translation_unit_time = time.perf_counter() - start_time
   min_time = min(translation_unit_time, min_time)
   max_time = max(translation_unit_time, max_time)
   total_time += translation_unit_time