Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
731ce036
Commit
731ce036
authored
Feb 19, 2014
by
Yury Selivanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol
parent
675b97c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
2 deletions
+29
-2
Lib/asyncio/transports.py
Lib/asyncio/transports.py
+6
-2
Lib/test/test_asyncio/test_transports.py
Lib/test/test_asyncio/test_transports.py
+23
-0
No files found.
Lib/asyncio/transports.py
View file @
731ce036
...
...
@@ -241,7 +241,7 @@ class _FlowControlMixin(Transport):
def
__init__
(
self
,
extra
=
None
):
super
().
__init__
(
extra
)
self
.
_protocol_paused
=
False
self
.
set_write_buffer_limits
()
self
.
_
set_write_buffer_limits
()
def
_maybe_pause_protocol
(
self
):
size
=
self
.
get_write_buffer_size
()
...
...
@@ -273,7 +273,7 @@ class _FlowControlMixin(Transport):
'protocol'
:
self
.
_protocol
,
})
def
set_write_buffer_limits
(
self
,
high
=
None
,
low
=
None
):
def
_
set_write_buffer_limits
(
self
,
high
=
None
,
low
=
None
):
if
high
is
None
:
if
low
is
None
:
high
=
64
*
1024
...
...
@@ -287,5 +287,9 @@ class _FlowControlMixin(Transport):
self
.
_high_water
=
high
self
.
_low_water
=
low
def
set_write_buffer_limits
(
self
,
high
=
None
,
low
=
None
):
self
.
_set_write_buffer_limits
(
high
=
high
,
low
=
low
)
self
.
_maybe_pause_protocol
()
def
get_write_buffer_size
(
self
):
raise
NotImplementedError
Lib/test/test_asyncio/test_transports.py
View file @
731ce036
...
...
@@ -4,6 +4,7 @@ import unittest
import
unittest.mock
import
asyncio
from
asyncio
import
transports
class
TransportTests
(
unittest
.
TestCase
):
...
...
@@ -60,6 +61,28 @@ class TransportTests(unittest.TestCase):
self
.
assertRaises
(
NotImplementedError
,
transport
.
terminate
)
self
.
assertRaises
(
NotImplementedError
,
transport
.
kill
)
def
test_flowcontrol_mixin_set_write_limits
(
self
):
class
MyTransport
(
transports
.
_FlowControlMixin
,
transports
.
Transport
):
def
get_write_buffer_size
(
self
):
return
512
transport
=
MyTransport
()
transport
.
_protocol
=
unittest
.
mock
.
Mock
()
self
.
assertFalse
(
transport
.
_protocol_paused
)
with
self
.
assertRaisesRegex
(
ValueError
,
'high.*must be >= low'
):
transport
.
set_write_buffer_limits
(
high
=
0
,
low
=
1
)
transport
.
set_write_buffer_limits
(
high
=
1024
,
low
=
128
)
self
.
assertFalse
(
transport
.
_protocol_paused
)
transport
.
set_write_buffer_limits
(
high
=
256
,
low
=
128
)
self
.
assertTrue
(
transport
.
_protocol_paused
)
if
__name__
==
'__main__'
:
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment