File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ Simple:
6363
6464* Write a python function that lists the services provided by a given range of
6565 ports.
66-
66+
6767 * accept the lower and upper bounds as arguments
6868 * provide sensible defaults
6969 * Ensure that it only accepts valid port numbers (0-65535)
@@ -74,11 +74,11 @@ Challenging:
7474 at a time. If a second client were to attempt a connection, it would have to
7575 wait until the first message was fully echoed before it could be dealt with.
7676
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
7878 in order to control flow. The ` select.select ` method can be used to allow
7979 our echo server to handle more than one incoming connection in "parallel".
8080
81- Read the documentation about the ` select ` module
81+ * Read the documentation about the ` select ` module
8282 (http://docs.python.org/3/library/select.html ) and attempt to write a second
8383 version of the echo server that can handle multiple client connections in
8484 "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