mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
PyUnicode_FromFormatV(): Fix %A format
It was not completly implemented. Add a test.
This commit is contained in:
parent
0410656b30
commit
9a90900da5
2 changed files with 7 additions and 3 deletions
|
@ -1074,6 +1074,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
|
|||
}
|
||||
case 'S':
|
||||
case 'R':
|
||||
case 'A':
|
||||
{
|
||||
Py_UNICODE *ucopy;
|
||||
Py_ssize_t usize;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue