]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Totally get rid of silly '\E' escape.
authorGuido van Rossum <guido@python.org>
Thu, 12 Mar 1992 17:36:11 +0000 (17:36 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 12 Mar 1992 17:36:11 +0000 (17:36 +0000)
Python/compile.c

index ff49d48329701303285f638d6038c314cd0fb198..ccb1de25ac373fc4fa726c76e28f445849ca902c 100644 (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':