summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-02-17 10:37:21 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-02-17 10:37:21 (GMT)
commitee319f66ab6fc041ff2f576562997e4c7bd33d3e (patch)
tree18bb142ce7703910f7ac3a25c69406aa1d7f2ad6 /Objects
parent5bbe6ad2b5834a6f087d30fe9c54604eefc8d2c3 (diff)
downloadcpython-ee319f66ab6fc041ff2f576562997e4c7bd33d3e.zip
cpython-ee319f66ab6fc041ff2f576562997e4c7bd33d3e.tar.gz
cpython-ee319f66ab6fc041ff2f576562997e4c7bd33d3e.tar.bz2
Fix
[ 1124295 ] Function's __name__ no longer accessible in restricted mode which I introduced with a bit of mindless copy-paste when making __name__ writable. You can't assign to __name__ in restricted mode, which I'm going to pretend was intentional :)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/funcobject.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c
index c7f7c9d..c0c91c9 100644
--- a/Objects/funcobject.c
+++ b/Objects/funcobject.c
@@ -262,8 +262,6 @@ func_set_code(PyFunctionObject *op, PyObject *value)
static PyObject *
func_get_name(PyFunctionObject *op)
{
- if (restricted())
- return NULL;
Py_INCREF(op->func_name);
return op->func_name;
}