diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-13 21:16:12 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-13 21:16:12 +0200 |
commit | eeb9927c89d6d2425a74c33ff8773bceba39af1c (patch) | |
tree | e5e770fc041fa27b6e13a78dc9c3dc3f75c7c213 /fportlist.py | |
parent | 99561b834dbd9d52b83aa7b0fb980431fa1aa056 (diff) | |
download | pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.zip pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.tar.gz |
Diffstat (limited to 'fportlist.py')
-rw-r--r-- | fportlist.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fportlist.py b/fportlist.py index 38da1aa..efa0b7c 100644 --- a/fportlist.py +++ b/fportlist.py @@ -22,7 +22,7 @@ """/** Inherited from Fport to add a listHash. function : maintain a list in - FevenDoor : + FevenDoor : description : work as Fport. @@ -36,12 +36,12 @@ from flist import Flist class FportList(Fport): - """This class is nothing but a fport with a flist as atribute""" + """This class is nothing but a fport with a flist as atribute""" - def __init__(self): - Fport.__init__(self) # force constructor - self.list = Flist #/** List of inherited class from FstringHash ( found them faster). */ + def __init__(self): + Fport.__init__(self) # force constructor + self.list = Flist #/** List of inherited class from FstringHash ( found them faster). */ - def __str__(self): - return "\t"+Fport.__str__(self)+\ - "FportList - list : "+str(self.list)+"\n" + def __str__(self): + return "\t"+Fport.__str__(self)+\ + "FportList - list : "+str(self.list)+"\n" |