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

« back to all changes in this revision

Viewing changes to zmq/core/context.pxd

  • Committer: Package Import Robot
  • Author(s): Julian Taylor, Julian Taylor, Jakub Wilk
  • Date: 2013-05-09 15:07:29 UTC
  • mfrom: (2.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130509150729-1xf0eb5wrokflfm7
Tags: 2.2.0.1-2
[ Julian Taylor ]
* upload to unstable
* python-gevent-dbg is fixed, enable python2 dbg autopkgtests
* cython0.19-compat.patch: fix build with cython 0.19

[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    cdef void ** _sockets     # A C-array containg socket handles
31
31
    cdef size_t n_sockets         # the number of sockets
32
32
    cdef size_t max_sockets         # the size of the _sockets array
 
33
    cdef int _pid # the pid of the process which created me (for fork safety)
 
34
 
33
35
    cdef public object closed # bool property for a closed context.
34
36
    # helpers for events on _sockets in Socket.__cinit__()/close()
35
37
    cdef inline void _add_socket(self, void* handle)