Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.rst #2219

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ Documentation
-------------

`User guide and developer documentation <https://ganga.readthedocs.io/en/latest/index.html>`_


testing
testing
testing
8 changes: 4 additions & 4 deletions ganga/GangaCore/Core/GangaThread/GangaThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading