Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
574deae5
Commit
574deae5
authored
Nov 04, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #625823: Add symbolic constants for more commands.
parent
2eba52fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
Lib/telnetlib.py
Lib/telnetlib.py
+13
-2
No files found.
Lib/telnetlib.py
View file @
574deae5
...
...
@@ -53,8 +53,19 @@ DO = chr(253)
WONT
=
chr
(
252
)
WILL
=
chr
(
251
)
theNULL
=
chr
(
0
)
SB
=
chr
(
250
)
SE
=
chr
(
240
)
SE
=
chr
(
240
)
# Subnegotiation End
NOP
=
chr
(
241
)
# No Operation
DM
=
chr
(
242
)
# Data Mark
BRK
=
chr
(
243
)
# Break
IP
=
chr
(
244
)
# Interrupt process
AO
=
chr
(
245
)
# Abort output
AYT
=
chr
(
246
)
# Are You There
EC
=
chr
(
247
)
# Erase Character
EL
=
chr
(
248
)
# Erase Line
GA
=
chr
(
249
)
# Go Ahead
SB
=
chr
(
250
)
# Subnegotiation Begin
# Telnet protocol options code (don't change)
# These ones all come from arpa/telnet.h
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment