Browse Source

Axel python 2.5 fix

pull/1/merge
Ruud 14 years ago
parent
commit
b59c28d4a3
  1. 2
      libs/axl/__init__.py
  2. 20
      libs/axl/axel.py

2
libs/axel/__init__.py → libs/axl/__init__.py

@ -10,4 +10,4 @@ from .axel import *
__all__ = sorted(name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)))
__all__.append('axel')
del inspect
del inspec

20
libs/axel/axel.py → libs/axl/axel.py

@ -52,8 +52,8 @@ class Event(object):
>> None
"""
def __init__(self, sender=None, asynch=False, exc_info=False,
lock=None, threads=3, traceback=False):
def __init__(self, sender = None, asynch = False, exc_info = False,
lock = None, threads = 3, traceback = False):
""" Creates an event
asynch
@ -139,8 +139,8 @@ class Event(object):
max_threads = self._threads()
for i in range(max_threads):
t = threading.Thread(target=self._execute,
args=args, kwargs=kwargs)
t = threading.Thread(target = self._execute,
args = args, kwargs = kwargs)
t.daemon = True
t.start()
@ -179,7 +179,7 @@ class Event(object):
if not self.asynchronous:
self.result.append(tuple(r))
except Exception as err:
except Exception:
if not self.asynchronous:
self.result.append((False, self._error(sys.exc_info()),
handler))
@ -190,6 +190,9 @@ class Event(object):
if not self.asynchronous:
self.queue.task_done()
if self.queue.empty():
raise Queue.Empty
except Queue.Empty:
break
@ -268,9 +271,10 @@ class Event(object):
finally:
lock.release()
def _timeout(self, timeout, handler, *args, **kwargs):
""" Controls the time allocated for the execution of a method """
t = spawn_thread(target=handler, args=args, kwargs=kwargs)
t = spawn_thread(target = handler, args = args, kwargs = kwargs)
t.daemon = True
t.start()
t.join(timeout)
@ -303,12 +307,12 @@ class Event(object):
__iadd__ = handle
__isub__ = unhandle
__call__ = fire
__len__ = count
__len__ = count
class spawn_thread(threading.Thread):
""" Spawns a new thread and returns the execution result """
def __init__(self, target, args=(), kwargs={}, default=None):
def __init__(self, target, args = (), kwargs = {}, default = None):
threading.Thread.__init__(self)
self._target = target
self._args = args
Loading…
Cancel
Save