diff options
author | Michael W. Hudson <mwh@python.net> | 2004-08-12 18:12:44 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2004-08-12 18:12:44 (GMT) |
commit | 5e897959db37752da4c6b476903cdc5e1357093c (patch) | |
tree | 73745bf828ac5d8d77254a9d2895169ae6bbae3c /Misc/NEWS | |
parent | 5523c2517f14aed04f94865189ce986040652415 (diff) | |
download | cpython-5e897959db37752da4c6b476903cdc5e1357093c.zip cpython-5e897959db37752da4c6b476903cdc5e1357093c.tar.gz cpython-5e897959db37752da4c6b476903cdc5e1357093c.tar.bz2 |
This is my patch
[ 1004703 ] Make func_name writable
plus fixing a couple of nits in the documentation changes spotted by MvL
and a Misc/NEWS entry.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.4 alpha 3? Core and builtins ----------------- +- The ``func_name`` (a.k.a. ``__name__``) attribute of user-defined + functions is now writable. + - code_new (a.k.a new.code()) now checks its arguments sufficiently carefully that passing them on to PyCode_New() won't trigger calls to Py_FatalError() or PyErr_BadInternalCall(). It is still the case |