summaryrefslogtreecommitdiff
path: root/configs/sim/axis/remap/cycle/python/toplevel.py
blob: b7f606708c567332b6b82c07e43067e134a8128a (plain)
1
2
3
4
5
6
7
8
9
10
11
import remap
import os

def __init__(self):
    # handle any per-module initialisation tasks here
    remap.init_stdglue(self)
    print "interp __init__",self.task,os.getpid()

def __delete__(self):
     # handle any per-module shutdown tasks here
     print "interp __delete__",self.task,os.getpid()