Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
"""
mod2
"""


def decorator(f):
    return f


@decorator
def func2(a, b):
    """
    this is func2
    """
    return a, b


@decorator
class Class2(object):
    """
    this is Class2
    """