From: Guido van Rossum Date: Thu, 12 Mar 1992 17:36:11 +0000 (+0000) Subject: Totally get rid of silly '\E' escape. X-Git-Tag: v0.9.8~480 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56a1bcc107117a10ba29e90823c79dd6a3fa3e2a;p=thirdparty%2FPython%2Fcpython.git Totally get rid of silly '\E' escape. --- diff --git a/Python/compile.c b/Python/compile.c index ff49d4832970..ccb1de25ac37 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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':