Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions aiohttp/_websocket/reader_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import sys
import weakref
from collections import deque
from typing import Final

from ..base_protocol import BaseProtocol
from ..compression_utils import TooManyMembersError, ZLibDecompressor
Expand Down Expand Up @@ -65,9 +64,9 @@

# Overhead added to each message to ensure that tiny messages can't use
# unreasonable amounts of memory.
MSG_SIZE_OVERHEAD: Final[int] = 128
MSG_SIZE_OVERHEAD = 128

STALLED_READER_COLLECTED: Final[str] = (
STALLED_READER_COLLECTED = (
"WebSocketReader was garbage collected while stalled; "
"callers of set_parser() must hold a strong reference"
)
Expand Down
2 changes: 1 addition & 1 deletion requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ coverage==7.15.4
# pytest-cov
cryptography==50.0.0
# via trustme
cython==3.2.9
cython==3.3.0
# via -r requirements/cython.in
distlib==0.4.3
# via virtualenv
Expand Down
2 changes: 1 addition & 1 deletion requirements/cython.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile --allow-unsafe --output-file=requirements/cython.txt --resolver=backtracking --strip-extras requirements/cython.in
#
cython==3.2.9
cython==3.3.0
# via -r requirements/cython.in
multidict==6.7.1
# via -r requirements/multidict.in
Expand Down
Loading