[Python-Dev] cpython: allow arbitrary attributes on classmethod and staticmethod (closes #14051) (original) (raw)
Antoine Pitrou solipsis at pitrou.net
Sun Feb 19 13:11:22 CET 2012
- Previous message: [Python-Dev] Status of PEP 397 - Python launcher for Windows
- Next message: [Python-Dev] cpython: allow arbitrary attributes on classmethod and staticmethod (closes #14051)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
+static PyObject * +cmget_dict(classmethod *cm, void *closure)_ +{ + PyINCREF(cm->cmdict); + return cm->cmdict; +}
def f(): pass ... cm = classmethod(f) cm.dict Erreur de segmentation
Regards
Antoine.
- Previous message: [Python-Dev] Status of PEP 397 - Python launcher for Windows
- Next message: [Python-Dev] cpython: allow arbitrary attributes on classmethod and staticmethod (closes #14051)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]