~ubuntu-branches/ubuntu/utopic/pyzmq/utopic

« back to all changes in this revision

Viewing changes to zmq/devices/proxydevice.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2014-06-17 23:23:35 UTC
  • mfrom: (7.2.1 sid)
  • Revision ID: package-import@ubuntu.com-20140617232335-ugs1yd1547jl0l9c
Tags: 14.3.1-1
* New upstream release
* monitor-test.patch: fix test logic for synchronous connects on freebsd
* ignore test results on mips, hard to debug race condition, no reason to
  delay testing migration (Closes: #750813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""Proxy classes and functions.
2
 
 
3
 
Authors
4
 
-------
5
 
* MinRK
6
 
* Brian Granger
7
 
"""
8
 
 
9
 
#-----------------------------------------------------------------------------
10
 
#  Copyright (c) 2013 Brian Granger, Min Ragan-Kelley
11
 
#
12
 
#  This file is part of pyzmq
13
 
#
14
 
#  Distributed under the terms of the New BSD License.  The full license is in
15
 
#  the file COPYING.BSD, distributed as part of this software.
16
 
#-----------------------------------------------------------------------------
17
 
 
18
 
#-----------------------------------------------------------------------------
19
 
# Imports
20
 
#-----------------------------------------------------------------------------
 
1
"""Proxy classes and functions."""
 
2
 
 
3
# Copyright (C) PyZMQ Developers
 
4
# Distributed under the terms of the Modified BSD License.
21
5
 
22
6
import zmq
23
7
from zmq.devices.basedevice import Device, ThreadDevice, ProcessDevice
24
8
 
25
 
#-----------------------------------------------------------------------------
26
 
# Classes
27
 
#-----------------------------------------------------------------------------
28
 
 
29
9
 
30
10
class ProxyBase(object):
31
11
    """Base class for overriding methods."""