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    
Mako / test / sample_module_namespace.py
Size: Mime:
def foo1(context):
    context.write("this is foo1.")
    return ''
 
def foo2(context, x):
    context.write("this is foo2, x is " + x)
    return ''