diff options
author | Barry Warsaw <barry@python.org> | 2001-01-15 20:40:19 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-15 20:40:19 (GMT) |
commit | d6a9e84c8193076e776a1b419148f3043e2f6330 (patch) | |
tree | c8fa0c1326e936671bab39e6a6e94138b6bf120f /Include/funcobject.h | |
parent | 4a420a0a753119bab88d60603a4305b3586982bd (diff) | |
download | cpython-d6a9e84c8193076e776a1b419148f3043e2f6330.zip cpython-d6a9e84c8193076e776a1b419148f3043e2f6330.tar.gz cpython-d6a9e84c8193076e776a1b419148f3043e2f6330.tar.bz2 |
Committing PEP 232, function attribute feature, approved by Guido.
Closes SF patch #103123.
funcobject.h:
PyFunctionObject: add the func_dict slot.
funcobject.c:
PyFunction_New(): Initialize the func_dict slot to NULL.
func_getattr(): Rename to func_getattro() and change the
signature. It's more efficient to use attro methods and dig the C
string out than it is to re-convert a C string to a PyString.
Also, add support for getting the __dict__ (a.k.a. func_dict)
attribute, and for getting an arbitrary function attribute.
func_setattr(): Rename to func_setattro() and change the signature
for the same reason. Also add support for setting __dict__
(a.k.a. func_dict) and any arbitrary function attribute.
func_dealloc(): Be sure to DECREF the func_dict slot.
func_traverse(): Be sure to traverse func_dict too.
PyFunction_Type: make the necessary func_?etattro() changes.
classobject.c:
instancemethod_memberlist: Add __dict__
instancemethod_setattro(): New method to set arbitrary attributes
on methods (really the underlying im_func). Raise TypeError when
the instance is bound or when you're trying to set one of the
reserved im_* attributes.
instancemethod_getattr(): Renamed to instancemethod_getattro()
since that's what it really is. Also, added support fo getting
arbitrary attributes through the im_func.
PyMethod_Type: Do the ?etattr{,o} dance.
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r-- | Include/funcobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index 6ba1e09..35ccf43 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -14,6 +14,7 @@ typedef struct { PyObject *func_defaults; PyObject *func_doc; PyObject *func_name; + PyObject *func_dict; } PyFunctionObject; extern DL_IMPORT(PyTypeObject) PyFunction_Type; |