There is a way of "copying" a function object, so that you can change the documentation on it. You should just not do it because it's horribly hacky.
def f(a): "doc of f" return 0 import types g=types.FunctionType(f.__code__,f.__globals__) g.__doc__="doc of g" g.__doc__ f.__doc__ I think the original doc is actually stored on the __code__ object, so you could also copy that and change the docstring there, but the override on functions seems to work OK. types.CodeType could be employed for that probably. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/02e38cf6-4439-491b-a12c-ef4aa14bbc0c%40googlegroups.com.