[Python-3000-checkins] r56936 - python/branches/py3k/Python/ast.c

martin.v.loewis python-3000-checkins at python.org
Sat Aug 11 23:58:48 CEST 2007


Author: martin.v.loewis
Date: Sat Aug 11 23:58:46 2007
New Revision: 56936

Modified:
   python/branches/py3k/Python/ast.c
Log:
Remove obsolete ifdef.

Modified: python/branches/py3k/Python/ast.c
==============================================================================
--- python/branches/py3k/Python/ast.c	(original)
+++ python/branches/py3k/Python/ast.c	Sat Aug 11 23:58:46 2007
@@ -3112,7 +3112,6 @@
     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 @@
     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).


More information about the Python-3000-checkins mailing list