comparison python/ppci/core/function.py @ 104:ed230e947dc6

Added hexviewer
author windel
date Sun, 30 Dec 2012 22:31:55 +0100
parents 4a37d6992bd3
children 6a303f835c6d
comparison
equal deleted inserted replaced
103:28a35161ef23 104:ed230e947dc6
1 1
2 class Function: 2 class Function:
3 def __init__(self): 3 def __init__(self, functiontype, name, module):
4 pass 4 self.functiontype = functiontype
5 self.name = name
6 self.module = module
5 7
6