[pyar] Docstrings dinamicos?
Facundo Batista
facundobatista en gmail.com
Vie Abr 18 11:00:00 ART 2014
2014-04-18 9:53 GMT-03:00 Roberto Alsina <ralsina en netmanagers.com.ar>:
>>>> w = Wrapper(cosa)
>>>>help(w)
Pero vos querés que "help" te funcione sobre *cualquier* objeto? O
sobre funciones y clases? Porque ahí funca:
Python 3.3.2+ (default, Feb 28 2014, 00:53:38)
>>> class C: pass
...
>>> C.__doc__ = "foo"
>>>
>>> c = C()
>>> c.__doc__ = "bar"
>>>
>>> f = lambda: None
>>> f.__doc__ = "baz"
>>>
Slds.
--
. Facundo
Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
Twitter: @facundobatista
More information about the pyar
mailing list