Reformat offlineimap/threadutil.py
Add some spaces, remove lines,... now format is better (lintian).
This commit is contained in:
parent
973e3324ff
commit
74ae944b06
@ -20,12 +20,11 @@ from queue import Queue, Empty
|
|||||||
import traceback
|
import traceback
|
||||||
from offlineimap.ui import getglobalui
|
from offlineimap.ui import getglobalui
|
||||||
|
|
||||||
|
|
||||||
STOP_MONITOR = 'STOP_MONITOR'
|
STOP_MONITOR = 'STOP_MONITOR'
|
||||||
|
|
||||||
######################################################################
|
|
||||||
# General utilities
|
# General utilities
|
||||||
######################################################################
|
|
||||||
|
|
||||||
def semaphorereset(semaphore, originalstate):
|
def semaphorereset(semaphore, originalstate):
|
||||||
"""Block until `semaphore` gets back to its original state, ie all acquired
|
"""Block until `semaphore` gets back to its original state, ie all acquired
|
||||||
@ -37,6 +36,7 @@ def semaphorereset(semaphore, originalstate):
|
|||||||
for i in range(originalstate):
|
for i in range(originalstate):
|
||||||
semaphore.release()
|
semaphore.release()
|
||||||
|
|
||||||
|
|
||||||
class accountThreads(object):
|
class accountThreads(object):
|
||||||
"""Store the list of all threads in the software so it can be used to find out
|
"""Store the list of all threads in the software so it can be used to find out
|
||||||
what's running and what's not."""
|
what's running and what's not."""
|
||||||
@ -73,6 +73,7 @@ class accountThreads(object):
|
|||||||
|
|
||||||
exitedThreads = Queue()
|
exitedThreads = Queue()
|
||||||
|
|
||||||
|
|
||||||
def monitor():
|
def monitor():
|
||||||
"""An infinite "monitoring" loop watching for finished ExitNotifyThread's.
|
"""An infinite "monitoring" loop watching for finished ExitNotifyThread's.
|
||||||
|
|
||||||
@ -189,6 +190,7 @@ class ExitNotifyThread(Thread):
|
|||||||
|
|
||||||
limitedNamespaces = {}
|
limitedNamespaces = {}
|
||||||
|
|
||||||
|
|
||||||
def initInstanceLimit(limitNamespace, instancemax):
|
def initInstanceLimit(limitNamespace, instancemax):
|
||||||
"""Initialize the instance-limited thread implementation.
|
"""Initialize the instance-limited thread implementation.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user