[issue10831] PyUnicode_FromFormatV() doesn't support %li, %lli, %zi

STINNER Victor report at bugs.python.org
Wed Jan 5 02:55:17 CET 2011


New submission from STINNER Victor <victor.stinner at haypocalc.com>:

PyUnicode_FromFormatV() supports %d, %ld, %lld, %zd, %u, %lu, %llu, %zu, %i. But it doesn't support %li, %lli, %zi.

Attached patch implements the 3 missing formats, and add unit tests for all these formats.

----------
components: Interpreter Core, Unicode
files: pyunicode_fromformatv_zi.patch
keywords: patch
messages: 125396
nosy: haypo
priority: normal
severity: normal
status: open
title: PyUnicode_FromFormatV() doesn't support %li, %lli, %zi
versions: Python 3.2, Python 3.3
Added file: http://bugs.python.org/file20266/pyunicode_fromformatv_zi.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10831>
_______________________________________


More information about the Python-bugs-list mailing list