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
eac324b9
Commit
eac324b9
authored
Jun 03, 2004
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #957240: Add count parameter to asyncore.loop.
parent
3e501dcf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
16 deletions
+19
-16
Doc/lib/libasyncore.tex
Doc/lib/libasyncore.tex
+14
-14
Lib/asyncore.py
Lib/asyncore.py
+3
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/lib/libasyncore.tex
View file @
eac324b9
...
...
@@ -44,20 +44,20 @@ channel (including any that have been added to the map during asynchronous
service) is closed.
\begin{funcdesc}
{
loop
}{
\optional
{
timeout
\optional
{
, use
_
poll
\optional
{
,
map
}}}}
Enter a polling loop that
only terminates after all open channels
have been closed. All arguments are optional. The
\var
{
timeout
}
argument sets the timeout parameter for the appropriate
\function
{
select()
}
or
\function
{
poll()
}
call, measured in seconds;
t
he default is 30 seconds. The
\var
{
use
_
poll
}
parameter, if true,
indicates that
\function
{
poll()
}
should be used in preference to
\function
{
select()
}
(the default is
\code
{
False
}
). The
\var
{
map
}
parameter
is a dictionary whose items are the channels to watch. As channel
s
are closed they are deleted from their map. If
\var
{
map
}
is
omitted, a global map is used (this map is updated by the default
class
\method
{__
init
__
()
}
-- make sure you extend, rather than override,
\method
{__
init
__
()
}
if you want to retain this behavior).
map
\optional
{
,count
}
}}}}
Enter a polling loop that
terminates after count passes or all open
channels have been closed. All arguments are optional. The
\var
(count)
parameter defaults to infinity, resulting in the loop terminating only
when all channels have been closed. The
\var
{
timeout
}
argument sets the
t
imeout parameter for the appropriate
\function
{
select()
}
or
\function
{
poll()
}
call, measured in seconds; the default is 30 seconds.
The
\var
{
use
_
poll
}
parameter, if true, indicates that
\function
{
poll()
}
should be used in preference to
\function
{
select()
}
(the default i
s
\code
{
False
}
). The
\var
{
map
}
parameter is a dictionary whose items are
the channels to watch. As channels are closed they are deleted from their
map. If
\var
{
map
}
is omitted, a global map is used (this map is updated
by the default class
\method
{__
init
__
()
}
-- make sure you extend, rather
than override,
\method
{__
init
__
()
}
if you want to retain this behavior).
Channels (instances of
\class
{
asyncore.dispatcher
}
,
\class
{
asynchat.async
_
chat
}
and subclasses thereof) can freely be mixed in the map.
...
...
Lib/asyncore.py
View file @
eac324b9
...
...
@@ -157,7 +157,7 @@ def poll2(timeout=0.0, map=None):
poll3
=
poll2
# Alias for backward compatibility
def
loop
(
timeout
=
30.0
,
use_poll
=
False
,
map
=
None
):
def
loop
(
timeout
=
30.0
,
use_poll
=
False
,
map
=
None
,
count
=
1e309
):
if
map
is
None
:
map
=
socket_map
...
...
@@ -166,8 +166,9 @@ def loop(timeout=30.0, use_poll=False, map=None):
else
:
poll_fun
=
poll
while
map
:
while
map
and
count
>=
0
:
poll_fun
(
timeout
,
map
)
count
=
count
-
1
class
dispatcher
:
...
...
Misc/NEWS
View file @
eac324b9
...
...
@@ -319,6 +319,8 @@ Extension modules
Library
-------
-
asyncore
.
loop
now
has
repeat
count
parameter
that
defaults
to
infinity
.
-
The
distutils
sdist
command
now
ignores
all
.
svn
directories
,
in
addition
to
CVS
and
RCS
directories
.
.
svn
directories
hold
administrative
files
for
the
Subversion
source
control
system
.
...
...
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