mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Remove trailing blanks.
This commit is contained in:
parent
a9f90bc602
commit
a951f3d1ac
1 changed files with 7 additions and 7 deletions
|
@ -214,29 +214,29 @@ Examples of selector usage::
|
|||
|
||||
>>> import selectors
|
||||
>>> import socket
|
||||
>>>
|
||||
>>>
|
||||
>>> s = selectors.DefaultSelector()
|
||||
>>> r, w = socket.socketpair()
|
||||
>>>
|
||||
>>>
|
||||
>>> r.setblocking(False)
|
||||
>>> w.setblocking(False)
|
||||
>>>
|
||||
>>>
|
||||
>>> s.register(r, selectors.EVENT_READ)
|
||||
SelectorKey(fileobj=<socket.socket fd=4, family=AddressFamily.AF_UNIX, type=2049, proto=0>, fd=4, events=1, data=None)
|
||||
>>> s.register(w, selectors.EVENT_WRITE)
|
||||
SelectorKey(fileobj=<socket.socket fd=5, family=AddressFamily.AF_UNIX, type=2049, proto=0>, fd=5, events=2, data=None)
|
||||
>>>
|
||||
>>>
|
||||
>>> print(s.select())
|
||||
[(SelectorKey(fileobj=<socket.socket fd=5, family=AddressFamily.AF_UNIX, type=2049, proto=0>, fd=5, events=2, data=None), 2)]
|
||||
>>>
|
||||
>>>
|
||||
>>> for key, events in s.select():
|
||||
... if events & selectors.EVENT_WRITE:
|
||||
... key.fileobj.send(b'spam')
|
||||
...
|
||||
...
|
||||
4
|
||||
>>> for key, events in s.select():
|
||||
... if events & selectors.EVENT_READ:
|
||||
... print(key.fileobj.recv(1024))
|
||||
...
|
||||
...
|
||||
b'spam'
|
||||
>>> s.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue