[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-15 Thread miss-islington
miss-islington added the comment: New changeset 802de12d99d16e621537d454eac942d2f448afee by Miss Islington (bot) in branch '3.7': bpo-23554: Change echo server example class name from EchoServerClientProtocol to EchoServerProtocol (GH-9859)

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-15 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-15 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 43a5bd7b458f0ad2d62b00b033d025689d48d591 by Yury Selivanov (Braden Groom) in branch 'master': bpo-23554: Change echo server example class name from EchoServerClientProtocol to EchoServerProtocol (GH-9859)

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +9262 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-13 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +9227 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: Cool! Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks @asvetlov. I'm going to mark this as an Easy Documentation issue, good for a first-time contributor. -- keywords: +easy stage: -> needs patch type: -> enhancement ___ Python tracker

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: Agree, EchoServer is the better name -- nosy: +asvetlov ___ Python tracker ___ ___

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2018-10-12 Thread Cheryl Sabella
Cheryl Sabella added the comment: Here's a link to the example that the original OP is referring to: https://docs.python.org/3/library/asyncio-protocol.html?highlight=echoserverclientprotocol#tcp-echo-server Since this doc page was recently rewritten, I'm not sure if this should be

[issue23554] EchoServerClientProtocol class should be called EchoServerProtocol

2015-02-28 Thread Giovanni Cannata
New submission from Giovanni Cannata: In 18.5.4.3.2. TCP echo server protocol the class in the example code is called EchoServerClientProtocol. It should be EchoServerProtocol. (The client protocol example is correctly called EchoClientProtocol). -- assignee: docs@python components: