From: Martin v. Löwis Date: Sat, 11 Aug 2007 21:58:46 +0000 (+0000) Subject: Remove obsolete ifdef. X-Git-Tag: v3.0a1~440 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2614e1dc6374e4869079147c7bbce42d264bd381;p=thirdparty%2FPython%2Fcpython.git Remove obsolete ifdef. --- diff --git a/Python/ast.c b/Python/ast.c index b1b697fd1f3a..5426c02cbe44 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3112,7 +3112,6 @@ decode_utf8(const char **sPtr, const char *end, char* encoding) return v; } -#ifdef Py_USING_UNICODE static PyObject * decode_unicode(const char *s, size_t len, int rawmode, const char *encoding) { @@ -3175,7 +3174,6 @@ decode_unicode(const char *s, size_t len, int rawmode, const char *encoding) Py_XDECREF(u); return v; } -#endif /* s is a Python string literal, including the bracketing quote characters, * and r &/or u prefixes (if any), and embedded escape sequences (if any).