From 56a1bcc107117a10ba29e90823c79dd6a3fa3e2a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 12 Mar 1992 17:36:11 +0000 Subject: Totally get rid of silly '\E' escape. --- Python/compile.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/Python/compile.c b/Python/compile.c index ff49d48..ccb1de2 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': -- cgit v0.12