Probably due to Trac #16309... sage: from sage.misc.sageinspect import sage_getargspec sage: sage_getargspec(gap) --------------------------------------------------------------------------- UnboundLocalError Traceback (most recent call last) <ipython-input-3-c5a19f1601c8> in <module>() ----> 1 sage_getargspec(gap)
/home/vbraun/Code/sage.git/local/lib/python2.7/site-packages/sage/misc/sageinspect.pyc in sage_getargspec(obj) 1382 # Otherwise we're (hopefully!) plain Python, so use inspect 1383 try: -> 1384 args, varargs, varkw = inspect.getargs(func_obj.__code__) 1385 except AttributeError: 1386 try: UnboundLocalError: local variable 'func_obj' referenced before assignment -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-devel. For more options, visit https://groups.google.com/d/optout.
