Skip to content

Commit b2f90cd

Browse files
authored
Fix bullet points.
1 parent e175ac6 commit b2f90cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)