File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ Simple:
63
63
64
64
* Write a python function that lists the services provided by a given range of
65
65
ports.
66
-
66
+
67
67
* accept the lower and upper bounds as arguments
68
68
* provide sensible defaults
69
69
* Ensure that it only accepts valid port numbers (0-65535)
@@ -74,11 +74,11 @@ Challenging:
74
74
at a time. If a second client were to attempt a connection, it would have to
75
75
wait until the first message was fully echoed before it could be dealt with.
76
76
77
- Python provides a module called ` select ` that allows waiting for I/O events
77
+ * Python provides a module called ` select ` that allows waiting for I/O events
78
78
in order to control flow. The ` select.select ` method can be used to allow
79
79
our echo server to handle more than one incoming connection in "parallel".
80
80
81
- Read the documentation about the ` select ` module
81
+ * Read the documentation about the ` select ` module
82
82
(http://docs.python.org/3/library/select.html ) and attempt to write a second
83
83
version of the echo server that can handle multiple client connections in
84
84
"parallel". You do not need to invoke threading of any kind to do this.
You can’t perform that action at this time.
0 commit comments