diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-08-11 12:23:04 +0000 |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-08-11 12:23:04 +0000 |
commit | cc8764ca9dc3fceb9dc283163a89c9bb649b5392 (patch) | |
tree | 7f4c069636e05afe04482cc42c38f1937818806d /Misc | |
parent | 078151da901bebce6eb232d958fbbb1e5ced4399 (diff) | |
download | cpython-git-cc8764ca9dc3fceb9dc283163a89c9bb649b5392.tar.gz |
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
u'%c' will now raise a ValueError in case the argument is an
integer outside the valid range of Unicode code point ordinals.
Closes SF bug #593581.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,9 @@ Type/class unification and new-style classes Core and builtins +- u'%c' will now raise a ValueError in case the argument is an + integer outside the valid range of Unicode code point ordinals. + - The tempfile module has been overhauled for enhanced security. The mktemp() function is now deprecated; new, safe replacements are mkstemp() (for files) and mkdtemp() (for directories), and the @@ -437,6 +440,9 @@ Build C API +- New C API PyUnicode_FromOrdinal() which exposes unichr() at C + level. + - New functions PyErr_SetExcFromWindowsErr() and PyErr_SetExcFromWindowsErrWithFilename(). Similar to PyErr_SetFromWindowsErrWithFilename() and |