aboutsummaryrefslogtreecommitdiffstats
path: root/test/patches/scapy-2.4/inet6.py.patch
diff options
context:
space:
mode:
authorArtem Glazychev <artem.glazychev@xored.com>2020-09-28 19:34:23 +0700
committerDamjan Marion <dmarion@me.com>2020-09-29 09:01:40 +0000
commit8bac1e8c868eea25f881f6b235df152f46382a1a (patch)
tree70a1f2cad0561c50c16fbb8df41730020bc89755 /test/patches/scapy-2.4/inet6.py.patch
parent6bdfcd429f6e0c98d3ff617cffc6d030ec71f660 (diff)
wireguard: fix indents
Type: fix Signed-off-by: Artem Glazychev <artem.glazychev@xored.com> Change-Id: I84cd7b08eac62160cf407409d32dd40cec7ae9d6
Diffstat (limited to 'test/patches/scapy-2.4/inet6.py.patch')
0 files changed, 0 insertions, 0 deletions
t;""zmq constants""" from ._cffi import C, c_constant_names from zmq.utils.constant_names import all_names g = globals() for cname in c_constant_names: if cname.startswith("ZMQ_"): name = cname[4:] else: name = cname g[name] = getattr(C, cname) __all__ = all_names