From 7d2578e16ab15fc79b3ec963d411cd62f002aafc Mon Sep 17 00:00:00 2001 From: shekhar-cis Date: Thu, 9 Sep 2021 16:09:29 +0530 Subject: [PATCH] fixed pkg errors and commented threading bootstrap code --- src/threads.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/threads.py b/src/threads.py index ac8bf7a6..6576db00 100644 --- a/src/threads.py +++ b/src/threads.py @@ -36,8 +36,8 @@ else: set_thread_name(self.name) threading.Thread.__bootstrap_original__(self) # pylint: disable=protected-access - threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap - threading.Thread._Thread__bootstrap = _thread_name_hack + # threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap + # threading.Thread._Thread__bootstrap = _thread_name_hack printLock = threading.Lock()