Totally get rid of silly '\E' escape.

This commit is contained in:
Guido van Rossum 1992-03-12 17:36:11 +00:00
parent 22ebe2f4a7
commit 56a1bcc107
1 changed files with 0 additions and 3 deletions

View File

@ -489,9 +489,6 @@ parsestr(s)
case 'n': *p++ = '\n'; break;
case 'r': *p++ = '\r'; break;
case 'v': *p++ = '\013'; break; /* VT */
#if 0
case 'E': *p++ = '\033'; break; /* ESC, not C */
#endif
case 'a': *p++ = '\007'; break; /* BEL, not classic C */
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':