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
126c8b4a
Commit
126c8b4a
authored
Jan 15, 2011
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid ResourceWarnings in ccbench
parent
6a002c02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
Tools/ccbench/ccbench.py
Tools/ccbench/ccbench.py
+13
-12
No files found.
Tools/ccbench/ccbench.py
View file @
126c8b4a
...
...
@@ -276,19 +276,19 @@ def _recv(sock, n):
return
sock
.
recv
(
n
).
decode
(
'ascii'
)
def
latency_client
(
addr
,
nb_pings
,
interval
):
sock
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_DGRAM
)
_time
=
time
.
time
_sleep
=
time
.
sleep
def
_ping
():
_sendto
(
sock
,
"%r
\
n
"
%
_time
(),
addr
)
# The first ping signals the parent process that we are ready.
_ping
()
# We give the parent a bit of time to notice.
_sleep
(
1.0
)
for
i
in
range
(
nb_pings
):
_sleep
(
interval
)
with
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_DGRAM
)
as
sock
:
_time
=
time
.
time
_sleep
=
time
.
sleep
def
_ping
():
_sendto
(
sock
,
"%r
\
n
"
%
_time
(),
addr
)
# The first ping signals the parent process that we are ready.
_ping
()
_sendto
(
sock
,
LAT_END
+
"
\
n
"
,
addr
)
# We give the parent a bit of time to notice.
_sleep
(
1.0
)
for
i
in
range
(
nb_pings
):
_sleep
(
interval
)
_ping
()
_sendto
(
sock
,
LAT_END
+
"
\
n
"
,
addr
)
def
run_latency_client
(
**
kwargs
):
cmd_line
=
[
sys
.
executable
,
'-E'
,
os
.
path
.
abspath
(
__file__
)]
...
...
@@ -363,6 +363,7 @@ def run_latency_test(func, args, nthreads):
for
t
in
threads
:
t
.
join
()
process
.
wait
()
sock
.
close
()
for
recv_time
,
chunk
in
chunks
:
# NOTE: it is assumed that a line sent by a client wasn't received
...
...
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