Skip to content

Commit 2c768db

Browse files
authoredMar 17, 2025··
Merge pull request #2082 from minrk/rm-dead-libzmq2
remove some dead code for libzmq2 support, add some Cython type annotations
2 parents 0b46d59 + 37fc333 commit 2c768db

21 files changed

+174
-242
lines changed
 

‎CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,6 @@ elseif(PYZMQ_BACKEND STREQUAL "cython")
411411
VERBATIM
412412
COMMAND "${Python_EXECUTABLE}"
413413
-mcython
414-
--3str
415414
--output-file ${ZMQ_C}
416415
--module-name "zmq.backend.cython._zmq"
417416
${ZMQ_PYX}

‎README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,18 @@ This package contains Python bindings for [ZeroMQ](https://zeromq.org).
44
ØMQ is a lightweight and fast messaging implementation.
55

66
PyZMQ should work with any reasonable version of Python (≥ 3.8), as well as PyPy.
7-
The Cython backend used by CPython supports libzmq ≥ 2.1.4 (including 3.2.x and 4.x),
8-
but the CFFI backend used by PyPy only supports libzmq ≥ 3.2.2 (including 4.x).
7+
PyZMQ supports libzmq ≥ 3.2.2 (including 4.x).
98

109
For a summary of changes to pyzmq, see our
1110
[changelog](https://pyzmq.readthedocs.io/en/latest/changelog.html).
1211

1312
### ØMQ 3.x, 4.x
1413

15-
PyZMQ fully supports the 3.x and 4.x APIs of libzmq,
14+
PyZMQ fully supports the stable (not DRAFT) 3.x and 4.x APIs of libzmq,
1615
developed at [zeromq/libzmq](https://github.com/zeromq/libzmq).
1716
No code to change, no flags to pass,
1817
just build pyzmq against the latest and it should work.
1918

20-
PyZMQ does not support the old libzmq 2 API on PyPy.
21-
2219
## Documentation
2320

2421
See PyZMQ's Sphinx-generated

‎tests/test_message.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
import time
1717

18+
import pytest
19+
1820
import zmq
1921
from zmq_test_utils import PYPY, BaseZMQTestCase, SkipTest, skip_cpython_cffi, skip_pypy
2022

@@ -215,11 +217,18 @@ def test_buffer_in(self):
215217
"""test using a buffer as input"""
216218
ins = "§§¶•ªº˜µ¬˚…∆˙åß∂©œ∑´†≈ç√".encode()
217219
zmq.Frame(memoryview(ins))
220+
zmq.Frame(bytearray(5))
218221

219222
def test_bad_buffer_in(self):
220223
"""test using a bad object"""
221-
self.assertRaises(TypeError, zmq.Frame, 5)
222-
self.assertRaises(TypeError, zmq.Frame, object())
224+
with pytest.raises(TypeError):
225+
zmq.Frame(5)
226+
with pytest.raises(TypeError):
227+
zmq.Frame(object())
228+
with pytest.raises(TypeError):
229+
zmq.Frame("str")
230+
with pytest.raises(BufferError):
231+
zmq.Frame(memoryview(bytearray(10))[::2])
223232

224233
def test_buffer_out(self):
225234
"""receiving buffered output"""

‎tests/test_socket.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -513,11 +513,11 @@ def test_recv_into_bad(self):
513513
b.recv_into(buf, nbytes=-1)
514514
# not contiguous
515515
buf = memoryview(bytearray(10))[::2]
516-
with pytest.raises(ValueError):
516+
with pytest.raises(BufferError):
517517
b.recv_into(buf)
518518
# readonly
519519
buf = memoryview(b"readonly")
520-
with pytest.raises(ValueError):
520+
with pytest.raises(BufferError):
521521
b.recv_into(buf)
522522
# too big
523523
buf = bytearray(10)

‎zmq/__init__.pyi

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ __version__: str
1414
from .backend import IPC_PATH_MAX_LEN as IPC_PATH_MAX_LEN
1515
from .backend import curve_keypair as curve_keypair
1616
from .backend import curve_public as curve_public
17-
from .backend import device as device
1817
from .backend import has as has
1918
from .backend import proxy as proxy
2019
from .backend import proxy_steerable as proxy_steerable

‎zmq/backend/__init__.pyi

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ def zmq_version_info() -> tuple[int, int, int]: ...
111111
def zmq_poll(
112112
sockets: list[Any], timeout: int | None = ...
113113
) -> list[tuple[Socket, int]]: ...
114-
def device(device_type: int, frontend: Socket, backend: Socket | None = ...) -> int: ...
115114
def proxy(frontend: Socket, backend: Socket, capture: Socket | None = None) -> int: ...
116115
def proxy_steerable(
117116
frontend: Socket,

‎zmq/backend/cffi/_cdefs.h

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ int zmq_connect(void *socket, const char *endpoint);
99
int zmq_errno(void);
1010
const char * zmq_strerror(int errnum);
1111

12-
int zmq_device(int device, void *frontend, void *backend);
13-
1412
int zmq_unbind(void *socket, const char *endpoint);
1513
int zmq_disconnect(void *socket, const char *endpoint);
1614
void* zmq_ctx_new();

‎zmq/backend/cffi/devices.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
from .utils import _retry_sys_call
1010

1111

12-
def device(device_type, frontend, backend):
13-
return proxy(frontend, backend)
14-
15-
1612
def proxy(frontend, backend, capture=None):
1713
if isinstance(capture, Socket):
1814
capture = capture._zmq_socket
@@ -60,4 +56,4 @@ def proxy_steerable(frontend, backend, capture=None, control=None):
6056
)
6157

6258

63-
__all__ = ['device', 'proxy', 'proxy_steerable']
59+
__all__ = ['proxy', 'proxy_steerable']

‎zmq/backend/cffi/message.py

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ def __init__(self, data=None, track=False, copy=None, copy_threshold=None):
8282
self._bytes = data
8383

8484
self._buffer = memoryview(data)
85+
if not self._buffer.contiguous:
86+
raise BufferError("memoryview: underlying buffer is not contiguous")
87+
# from_buffer silently copies if memory is not contiguous
8588
c_data = ffi.from_buffer(self._buffer)
8689
data_len_c = self._buffer.nbytes
8790

‎zmq/backend/cffi/socket.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import zmq
99
from zmq.constants import SocketOption, _OptType
10-
from zmq.error import ZMQError, _check_rc, _check_version
10+
from zmq.error import ZMQError, _check_rc
1111

1212
from ._cffi import ffi
1313
from ._cffi import lib as C
@@ -184,7 +184,6 @@ def bind(self, address):
184184
_check_rc(rc)
185185

186186
def unbind(self, address):
187-
_check_version((3, 2), "unbind")
188187
if isinstance(address, str):
189188
address = address.encode('utf8')
190189
rc = C.zmq_unbind(self._zmq_socket, address)
@@ -197,7 +196,6 @@ def connect(self, address):
197196
_check_rc(rc)
198197

199198
def disconnect(self, address):
200-
_check_version((3, 2), "disconnect")
201199
if isinstance(address, str):
202200
address = address.encode('utf8')
203201
rc = C.zmq_disconnect(self._zmq_socket, address)
@@ -340,9 +338,9 @@ def recv(self, flags=0, copy=True, track=False):
340338
def recv_into(self, buffer, /, *, nbytes: int = 0, flags: int = 0) -> int:
341339
view = memoryview(buffer)
342340
if not view.contiguous:
343-
raise ValueError("Can only recv_into contiguous buffers")
341+
raise BufferError("Can only recv_into contiguous buffers")
344342
if view.readonly:
345-
raise ValueError("Cannot recv_into readonly buffer")
343+
raise BufferError("Cannot recv_into readonly buffer")
346344
if nbytes < 0:
347345
raise ValueError(f"{nbytes=} must be non-negative")
348346
view_bytes = view.nbytes
@@ -372,8 +370,6 @@ def monitor(self, addr, events=-1):
372370
events : int [default: zmq.EVENT_ALL]
373371
The zmq event bitmask for which events will be sent to the monitor.
374372
"""
375-
376-
_check_version((3, 2), "monitor")
377373
if events < 0:
378374
events = zmq.EVENT_ALL
379375
if addr is None:

‎zmq/backend/cffi/utils.py

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def curve_keypair():
3131
(public, secret) : two bytestrings
3232
The public and private key pair as 40 byte z85-encoded bytestrings.
3333
"""
34-
_check_version((3, 2), "curve_keypair")
3534
public = ffi.new('char[64]')
3635
private = ffi.new('char[64]')
3736
rc = C.zmq_curve_keypair(public, private)

‎zmq/backend/cython/_externs.pxd

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cdef extern from "mutex.h" nogil:
77
cdef int mutex_unlock(mutex_t*)
88

99
cdef extern from "getpid_compat.h":
10-
int getpid()
10+
cdef int getpid()
1111

1212
cdef extern from "ipcmaxlen.h":
13-
int get_ipc_path_max_len()
13+
cdef int get_ipc_path_max_len()

‎zmq/backend/cython/_zmq.pxd

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# cython: language_level = 3str
12
"""zmq Cython backend augmented declarations"""
23

34
# Copyright (C) PyZMQ Developers

0 commit comments

Comments
 (0)