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
81319a81
Commit
81319a81
authored
Sep 13, 2019
by
Zackery Spytz
Committed by
Benjamin Peterson
Sep 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-37199: Replace the early returns added in
c2cda638
. (GH-14535)
parent
f3095b0b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
37 deletions
+34
-37
Lib/test/test_asyncio/test_base_events.py
Lib/test/test_asyncio/test_base_events.py
+34
-37
No files found.
Lib/test/test_asyncio/test_base_events.py
View file @
81319a81
...
@@ -91,9 +91,7 @@ class BaseEventTests(test_utils.TestCase):
...
@@ -91,9 +91,7 @@ class BaseEventTests(test_utils.TestCase):
self
.
assertIsNone
(
self
.
assertIsNone
(
base_events
.
_ipaddr_info
(
'1.2.3.4'
,
1
,
UNSPEC
,
0
,
0
))
base_events
.
_ipaddr_info
(
'1.2.3.4'
,
1
,
UNSPEC
,
0
,
0
))
if
not
support
.
IPV6_ENABLED
:
if
support
.
IPV6_ENABLED
:
return
# IPv4 address with family IPv6.
# IPv4 address with family IPv6.
self
.
assertIsNone
(
self
.
assertIsNone
(
base_events
.
_ipaddr_info
(
'1.2.3.4'
,
1
,
INET6
,
STREAM
,
TCP
))
base_events
.
_ipaddr_info
(
'1.2.3.4'
,
1
,
INET6
,
STREAM
,
TCP
))
...
@@ -1284,15 +1282,14 @@ class BaseEventLoopWithSelectorTests(test_utils.TestCase):
...
@@ -1284,15 +1282,14 @@ class BaseEventLoopWithSelectorTests(test_utils.TestCase):
t
.
close
()
t
.
close
()
test_utils
.
run_briefly
(
self
.
loop
)
# allow transport to close
test_utils
.
run_briefly
(
self
.
loop
)
# allow transport to close
if
not
support
.
IPV6_ENABLED
:
if
support
.
IPV6_ENABLED
:
return
sock
.
family
=
socket
.
AF_INET6
sock
.
family
=
socket
.
AF_INET6
coro
=
self
.
loop
.
create_connection
(
asyncio
.
Protocol
,
'::1'
,
80
)
coro
=
self
.
loop
.
create_connection
(
asyncio
.
Protocol
,
'::1'
,
80
)
t
,
p
=
self
.
loop
.
run_until_complete
(
coro
)
t
,
p
=
self
.
loop
.
run_until_complete
(
coro
)
try
:
try
:
# Without inet_pton we use getaddrinfo, which transforms ('::1', 80)
# Without inet_pton we use getaddrinfo, which transforms
# to ('::1', 80, 0, 0). The last 0s are flow info, scope id.
# ('::1', 80) to ('::1', 80, 0, 0). The last 0s are flow info,
# scope id.
[
address
]
=
sock
.
connect
.
call_args
[
0
]
[
address
]
=
sock
.
connect
.
call_args
[
0
]
host
,
port
=
address
[:
2
]
host
,
port
=
address
[:
2
]
self
.
assertRegex
(
host
,
r'::(0\
.)*
1'
)
self
.
assertRegex
(
host
,
r'::(0\
.)*
1'
)
...
...
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