summaryrefslogtreecommitdiff
path: root/zmq/sugar/frame.py
blob: cae4491c0821eee94af8821106e459623603e78b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# coding: utf-8
"""0MQ Frame pure Python methods."""

# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.


from .attrsettr import AttributeSetter
from zmq.backend import Frame as FrameBase


class Frame(FrameBase, AttributeSetter):
    pass

# keep deprecated alias
Message = Frame
__all__ = ['Frame', 'Message']