commit | 9a90900da59816b4d376c47b94b5513b849db070 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Mon Oct 18 20:59:24 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Mon Oct 18 20:59:24 2010 +0000 |
tree | aab54c015837003ae1846d0fd2c7267e390c756c | |
parent | 0410656b30df532d18a82e5da201501b76e2b1e3 [diff] |
PyUnicode_FromFormatV(): Fix %A format It was not completly implemented. Add a test.
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 0e2f950..7564b67 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -1074,6 +1074,7 @@ } case 'S': case 'R': + case 'A': { Py_UNICODE *ucopy; Py_ssize_t usize;