This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: missing names in telnetlib.py
Type: enhancement Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: exarkun, loewis
Priority: normal Keywords:

Created on 2002-10-20 05:24 by exarkun, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
telnetlib.patch exarkun, 2002-10-20 05:24
Messages (4)
msg12871 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2002-10-20 05:24
The telnet RFC (854 --
http://www.faqs.org/rfcs/rfc854.html) details eleven
constants for the telnet protocol that are not included
in the telnetlib module.  The attached patch adds them.
msg12872 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-11-04 09:11
Logged In: YES 
user_id=21627

How did you come up with the symbolic names for these constants?
msg12873 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2002-11-04 17:05
Logged In: YES 
user_id=366566

I used the abbreviations the RFC uses.  For example, from
the RFC:

       Abort Output (AO)                                   
             
                                                           
             
          Allow the current process to (appear to) run to
completion, but
          do not send its output to the user.  Also, send a
Synch to the
          user.                                            
            

and

       Erase Line          248    The function EL.         
            
msg12874 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-11-04 17:41
Logged In: YES 
user_id=21627

Thanks for the elaboration. I have applied this patch as
telnetlib.py 1.21, libtelnetlib.tex 1.11.
History
Date User Action Args
2022-04-10 16:05:46adminsetgithub: 37346
2002-10-20 05:24:50exarkuncreate