diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-05-06 21:11:54 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-05-06 21:11:54 (GMT) |
commit | 8cecc8c2624f31e1af4d24a14d1dde36a771fac9 (patch) | |
tree | dc10b27ac7eb8723dc35360fee78c33afe7eb3c1 /Misc | |
parent | 9b5d4d8cef6c465292f02105b5e408eb5f7db01d (diff) | |
download | cpython-8cecc8c2624f31e1af4d24a14d1dde36a771fac9.zip cpython-8cecc8c2624f31e1af4d24a14d1dde36a771fac9.tar.gz cpython-8cecc8c2624f31e1af4d24a14d1dde36a771fac9.tar.bz2 |
Issue #7330: Implement width and precision (ex: "%5.3s") for the format string
of PyUnicode_FromFormat() function, original patch written by Ysj Ray.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1? Core and Builtins ----------------- +- Issue #7330: Implement width and precision (ex: "%5.3s") for the format + string of PyUnicode_FromFormat() function, original patch written by Ysj Ray. + - Issue #1545463: Global variables caught in reference cycles are now garbage-collected at shutdown. |