From: Victor Stinner Date: Thu, 9 Aug 2012 19:38:23 +0000 (+0200) Subject: Remove now unused IntOrLongToString type X-Git-Tag: v3.3.0b2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d6266d5f148549979df024459e29b73307b86c4;p=thirdparty%2FPython%2Fcpython.git Remove now unused IntOrLongToString type --- diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 661bf192e9e1..a263efc84f8b 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -802,9 +802,6 @@ done: /*********** long formatting ********************************************/ /************************************************************************/ -typedef PyObject* -(*IntOrLongToString)(PyObject *value, int base); - static int format_long_internal(PyObject *value, const InternalFormatSpec *format, _PyUnicodeWriter *writer)