[Python-3000-checkins] r61685 - python/branches/py3k/Objects/unicodeobject.c

christian.heimes python-3000-checkins at python.org
Fri Mar 21 02:05:50 CET 2008


Author: christian.heimes
Date: Fri Mar 21 02:05:49 2008
New Revision: 61685

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
Disabled some unused functions to silence compiler warnings

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Fri Mar 21 02:05:49 2008
@@ -8347,6 +8347,7 @@
     return Py_SAFE_DOWNCAST(result, Py_ssize_t, int);
 }
 
+#if 0 
 static int
 longtounicode(Py_UNICODE *buffer, size_t len, const char *format, long x)
 {
@@ -8356,6 +8357,7 @@
     result = strtounicode(buffer, (char *)buffer);
     return Py_SAFE_DOWNCAST(result, Py_ssize_t, int);
 }
+#endif
 
 /* XXX To save some code duplication, formatfloat/long/int could have been
    shared with stringobject.c, converting from 8-bit to Unicode after the
@@ -8426,6 +8428,7 @@
 	return result;
 }
 
+#if 0
 static int
 formatint(Py_UNICODE *buf,
 	  size_t buflen,
@@ -8501,6 +8504,7 @@
     else
         return longtounicode(buf, buflen, fmt, x);
 }
+#endif
 
 static int
 formatchar(Py_UNICODE *buf,


More information about the Python-3000-checkins mailing list