Commit e9dc2827 authored by Jim Fulton's avatar Jim Fulton

Added test and Main

parent f61fedd2
from Publish import publish_module
def test(*args, **kw):
global test
import Test
test=Test.publish
return apply(test, args, kw)
def Main(*args, **kw):
global test
import Test
test=Test.publish
return apply(test, ('Main',)+args, kw)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment