diff options
author | Georg Brandl <georg@python.org> | 2008-05-16 17:28:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-16 17:28:50 (GMT) |
commit | d8b690f7ae57169d95f1cb4b3a0bccf5adfe6a30 (patch) | |
tree | 7399049dc820af415adf247fffd25bbc2ee2aebc /Misc | |
parent | bf82e374ee737992235cbe944c9ddbd58236a892 (diff) | |
download | cpython-d8b690f7ae57169d95f1cb4b3a0bccf5adfe6a30.zip cpython-d8b690f7ae57169d95f1cb4b3a0bccf5adfe6a30.tar.gz cpython-d8b690f7ae57169d95f1cb4b3a0bccf5adfe6a30.tar.bz2 |
#2895: don't crash with bytes as keyword argument names.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's new in Python 3.0b1? Core and Builtins ----------------- +- Issue 2895: Don't crash when given bytes objects as keyword names. + - Issue 2798: When parsing arguments with PyArg_ParseTuple, the "s" code now allows any unicode string and returns a utf-8 encoded buffer, just like the "s#" code already does. The "z" code was corrected as well. |