mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00

flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude benchmark Excluding the benchmark directory (due to protobuf generated files) Also removing some Python2 specific code
13 lines
237 B
Python
13 lines
237 B
Python
"""utilities for building pyzmq.
|
|
|
|
Largely adapted from h5py
|
|
"""
|
|
# flake8: noqa F401 F403
|
|
|
|
from .msg import *
|
|
from .config import *
|
|
from .detect import *
|
|
from .bundle import *
|
|
from .misc import *
|
|
from .patch import *
|
|
from .build import *
|