File: __init__.py

package info (click to toggle)
python-blockbuster 1.5.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 888; makefile: 8
file content (10 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
"""Blockbuster is a utility to detect blocking calls in the async event loop."""

from blockbuster.blockbuster import (
    BlockBuster,
    BlockBusterFunction,
    BlockingError,
    blockbuster_ctx,
)

__all__ = ["BlockBuster", "BlockBusterFunction", "BlockingError", "blockbuster_ctx"]