We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b1f810 commit a73d44eCopy full SHA for a73d44e
1 file changed
uvloop/sslproto.pyx
@@ -816,8 +816,8 @@ cdef class SSLProtocol:
816
bint zero = True, one = False
817
818
try:
819
- while (<size_t>self._incoming.pending > 0 or
820
- self._sslobj_pending() > 0):
+ while (<Py_ssize_t>self._incoming.pending > 0 or
+ <Py_ssize_t>self._sslobj_pending() > 0):
821
chunk = self._sslobj_read(SSL_READ_MAX_SIZE)
822
if not chunk:
823
break
0 commit comments