Skip to main content

Supercharged threads

Project description

Supercharged (sensible) execption propogating and lightweight wrapper around the standard library Thread. Basically ensures that you don’t have to perform cartwheels just to ensure that the execution of your threaded tests/programs do not fail behind your back with some exception. Usage example:

>>> from exthread import ExThread
>>> def task():
        arr = [1,2,3]
        arr[4]

>>> t = ExThread(task)
>>> t.start()
>>> t.join()
Traceback (most recent call last):
    ...
IndexError: ...

The API is deliciously simple:

>>> def task(a, b=1):
        return [a, b]

>>> t = ExThread(task, (1,), dict(b=2))
>>> t.start()
>>> t.join()
[1, 2]
>>> assert t.err is None
>>> assert t.val == [1, 2]

You don’t really need it. But you want it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exthread-0.1.1.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page