diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-13 14:03:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-13 14:03:48 (GMT) |
commit | 4a2b7a1b141fcbed6da81d942c9db776874c2fa9 (patch) | |
tree | 0288e22145e35c9d5d92c051800bf1c85e5858b8 /Misc | |
parent | b4b8eb916372dcb566740455122a28b5ed9631f9 (diff) | |
download | cpython-4a2b7a1b141fcbed6da81d942c9db776874c2fa9.zip cpython-4a2b7a1b141fcbed6da81d942c9db776874c2fa9.tar.gz cpython-4a2b7a1b141fcbed6da81d942c9db776874c2fa9.tar.bz2 |
Issue #9425: Create PyErr_WarnFormat() function
Similar to PyErr_WarnEx() but use PyUnicode_FromFormatV() to format the warning
message.
Strip also some trailing spaces.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 2? Core and Builtins ----------------- +- Issue #9425: Create PyErr_WarnFormat() function, similar to PyErr_WarnEx() + but use PyUnicode_FromFormatV() to format the warning message. + - Issue #8530: Prevent stringlib fastsearch from reading beyond the front of an array. @@ -85,7 +88,7 @@ Library Thread-local objects involved in reference cycles will be deallocated timely by the cyclic GC, even if the underlying thread is still running. -- Issue #9452: Add read_file, read_string, and read_dict to the configparser +- Issue #9452: Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions. - Issue #6231: Fix xml.etree.ElementInclude to include the tail of the |