From 913bf325df9c617c2b2de88cdc4ff5137aeb3a18 Mon Sep 17 00:00:00 2001 From: Alexander Richards Date: Mon, 27 Nov 2023 11:59:23 +0000 Subject: [PATCH 1/4] Update README.rst for testing, Dont merge --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index ba6711323d..5b0696c6c4 100644 --- a/README.rst +++ b/README.rst @@ -35,3 +35,6 @@ Documentation ------------- `User guide and developer documentation `_ + + +testing From 3d3c46ba09b3a9daaedd63f8b4480112bfefd56d Mon Sep 17 00:00:00 2001 From: Alexander Richards Date: Mon, 27 Nov 2023 13:12:39 +0000 Subject: [PATCH 2/4] Update README.rst --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 5b0696c6c4..58da2c146d 100644 --- a/README.rst +++ b/README.rst @@ -38,3 +38,4 @@ Documentation testing +testing From d2213b58bc6ffd9e9b8eeec218a3a0074d329508 Mon Sep 17 00:00:00 2001 From: Alexander Richards Date: Mon, 27 Nov 2023 13:56:39 +0000 Subject: [PATCH 3/4] Update README.rst --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 58da2c146d..9aa6c27639 100644 --- a/README.rst +++ b/README.rst @@ -39,3 +39,4 @@ Documentation testing testing +testing From f218e6e1dafdc3996582c6d570a916a9abadc385 Mon Sep 17 00:00:00 2001 From: Alexander Richards Date: Mon, 4 Dec 2023 09:23:53 +0000 Subject: [PATCH 4/4] break PEP8 on purpose --- ganga/GangaCore/Core/GangaThread/GangaThread.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ganga/GangaCore/Core/GangaThread/GangaThread.py b/ganga/GangaCore/Core/GangaThread/GangaThread.py index 39edb3db58..cf2b8efeb7 100644 --- a/ganga/GangaCore/Core/GangaThread/GangaThread.py +++ b/ganga/GangaCore/Core/GangaThread/GangaThread.py @@ -18,15 +18,15 @@ class GangaThread(Thread): __slots__ = ('__should_stop_flag', '__critical', '_lock', 'gangaName') - def __init__(self, name, auto_register=True, critical=True, **kwds): + def __init__(self, name,auto_register=True, critical=True, **kwds): - self.gangaName = str(name) # want to copy actual not by ref! + self.gangaName=str(name) # want to copy actual not by ref! name = 'GANGA_Update_Thread_%s' % name Thread.__init__(self, args=list(), name=name, **kwds) self.setDaemon(True) - self.__should_stop_flag = False - self.__critical = critical + self.__should_stop_flag = False + self.__critical=critical if auto_register: tpool = GangaThreadPool.getInstance()