commit | 2af8d2f6986bc3d07dc6dd63b77147f5b405b271 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Wed Jul 30 00:39:05 2014 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Wed Jul 30 00:39:05 2014 +0200 |
tree | 7d7acc468054bce5210aa5834fb2f09bda69c5c7 | |
parent | af09c774e57d9c9b265fad0c092b63852d06ed25 [diff] [blame] |
Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().
diff --git a/Misc/NEWS b/Misc/NEWS index f6dda99..8c9a2bb 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #22023: Fix ``%S``, ``%R`` and ``%V`` formats of + :c:func:`PyUnicode_FromFormat`. + - Issue #21591: Correctly handle qualified exec statements in tuple form by moving compatibility layer from run-time to AST transformation.