Skip to content

Commit a73d44e

Browse files
author
taras
committed
Cleanup
1 parent 7b1f810 commit a73d44e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uvloop/sslproto.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,8 @@ cdef class SSLProtocol:
816816
bint zero = True, one = False
817817

818818
try:
819-
while (<size_t>self._incoming.pending > 0 or
820-
self._sslobj_pending() > 0):
819+
while (<Py_ssize_t>self._incoming.pending > 0 or
820+
<Py_ssize_t>self._sslobj_pending() > 0):
821821
chunk = self._sslobj_read(SSL_READ_MAX_SIZE)
822822
if not chunk:
823823
break

0 commit comments

Comments
 (0)