Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.util.getargspec

import inspect


[docs]def getfullargspec(func): try: return inspect.getfullargspec(func) except AttributeError: # on python 2 return inspect.getargspec(func)