]> granicus.if.org Git - python/commitdiff
Remove obsolete ifdef.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 11 Aug 2007 21:58:46 +0000 (21:58 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 11 Aug 2007 21:58:46 +0000 (21:58 +0000)
Python/ast.c

index b1b697fd1f3ac388189e9e8b0be299af2a1a550d..5426c02cbe44d5b067ef43201c60ef4d7205f477 100644 (file)
@@ -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).