diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-08-09 19:38:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-08-09 19:38:23 (GMT) |
commit | 2d6266d5f148549979df024459e29b73307b86c4 (patch) | |
tree | 1955508989d9beaf488a6f3fc370febe44a0d9c6 /Python | |
parent | 25a02d403c688c5a0042804e81de33db2daab352 (diff) | |
download | cpython-2d6266d5f148549979df024459e29b73307b86c4.zip cpython-2d6266d5f148549979df024459e29b73307b86c4.tar.gz cpython-2d6266d5f148549979df024459e29b73307b86c4.tar.bz2 |
Remove now unused IntOrLongToString type
Diffstat (limited to 'Python')
-rw-r--r-- | Python/formatter_unicode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 661bf19..a263efc 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) |