[issue36481] telnetlib process_rawq() callback

2021-10-20 Thread Gökhan Öztürk
Change by Gökhan Öztürk : -- versions: +Python 3.11 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36481] telnetlib process_rawq() callback

2021-10-19 Thread Gökhan Öztürk
Gökhan Öztürk added the comment: Made updates, tests for this old issue. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36481] telnetlib process_rawq() callback

2021-10-19 Thread Gökhan Öztürk
Change by Gökhan Öztürk : -- pull_requests: +27323 pull_request: https://github.com/python/cpython/pull/29052 ___ Python tracker ___

[issue36481] telnetlib process_rawq() callback

2019-04-03 Thread SilentGhost
SilentGhost added the comment: As a general rule, your PR would have to include documentation (including a NEWS entry) and tests for the new functionality. Naturally, by itself it's not a guarantee that this suggestion would be accepted. -- nosy: +SilentGhost, giampaolo.rodola versio

[issue36481] telnetlib process_rawq() callback

2019-03-29 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +12557 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue36481] telnetlib process_rawq() callback

2019-03-29 Thread Gökhan Öztürk
New submission from Gökhan Öztürk : telnetlib.Telnet class requires a callback so that the raw data that comes from socket can be processed first. This will be useful for the compressed incoming data. Most of the MUD servers have MCCP V2 (byte: 86) protocol that send compressed data. But as fo