Sophie

Sophie

distrib > Mageia > 9 > armv7hl > media > core-release-src > by-pkgid > 34ec476497f9224385bc7f2b085ebd40 > files > 4

kazam-1.4.5-18.mga9.src.rpm

From: Charles Schaefer <charlesschaefer@gmail.com>
Date: Wed, 29 Apr 2020 15:42:53 -0300
Subject: Removing deprecated time.clock() calls. Using time.perf_counter()
 instead

---
 kazam/pulseaudio/pulseaudio.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/kazam/pulseaudio/pulseaudio.py b/kazam/pulseaudio/pulseaudio.py
index 050d3fa..0e7d2d3 100644
--- a/kazam/pulseaudio/pulseaudio.py
+++ b/kazam/pulseaudio/pulseaudio.py
@@ -255,8 +255,8 @@ class pulseaudio_q:
         try:
             logger.debug("get_audio_sources() called.")
             pa_context_get_source_info_list(self.pa_ctx, self._pa_sourcelist_cb, None)
-            t = time.clock()
-            while time.clock() - t < 5:
+            t = time.perf_counter()
+            while time.perf_counter() - t < 5:
                 if self.pa_status == PA_FINISHED:
                     self.sources = self._sources
                     self._sources = []
@@ -270,8 +270,8 @@ class pulseaudio_q:
         try:
             logger.debug("get_source_info_by_index() called. IDX: {0}".format(index))
             pa_context_get_source_info_by_index(self.pa_ctx, index, self._pa_sourceinfo_cb, None)
-            t = time.clock()
-            while time.clock() - t < 5:
+            t = time.perf_counter()
+            while time.perf_counter() - t < 5:
                 if self.pa_status == PA_FINISHED:
                     time.sleep(0.1)
                     ret = self._return_result
@@ -285,8 +285,8 @@ class pulseaudio_q:
         try:
             pa_context_set_source_volume_by_index(self.pa_ctx, index, cvolume,
                                                   self._pa_context_success_cb, None)
-            t = time.clock()
-            while time.clock() - t < 5:
+            t = time.perf_counter()
+            while time.perf_counter() - t < 5:
                 if self.pa_status == PA_FINISHED:
                     return 1
             raise PAError(PA_GET_SOURCES_TIMEOUT, "Unable to get sources, operation timed out.")
@@ -297,8 +297,8 @@ class pulseaudio_q:
         try:
             pa_context_set_source_mute_by_index(self.pa_ctx, index, mute,
                                                   self._pa_context_success_cb, None)
-            t = time.clock()
-            while time.clock() - t < 5:
+            t = time.perf_counter()
+            while time.perf_counter() - t < 5:
                 if self.pa_status == PA_FINISHED:
                     return 1
             raise PAError(PA_GET_SOURCES_TIMEOUT, "Unable to get sources, operation timed out.")