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 /fportlisthash.py | |
parent | 99561b834dbd9d52b83aa7b0fb980431fa1aa056 (diff) | |
download | pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.zip pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.tar.gz |
Diffstat (limited to 'fportlisthash.py')
-rw-r--r-- | fportlisthash.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fportlisthash.py b/fportlisthash.py index 1fffd3c..908c4d6 100644 --- a/fportlisthash.py +++ b/fportlisthash.py @@ -40,18 +40,18 @@ */""" __all__ = ["FportListHash"] - + from fport import Fport from flisthash import FlistHash class FportListHash(Fport): - """ This is a Fport with Flist attribute""" - - def __init__(self): - Fport.__init__(self) # force constructor - self.listHash = FlistHash() #/** List of inherited class from FstringHash ( found them faster). */ - - def __str__(self): - return "\t"+Fport.__str__(self)+\ - "FportListHash - list : "+str(self.listHash)+"\n" + """ This is a Fport with Flist attribute""" + + def __init__(self): + Fport.__init__(self) # force constructor + self.listHash = FlistHash() #/** List of inherited class from FstringHash ( found them faster). */ + + def __str__(self): + return "\t"+Fport.__str__(self)+\ + "FportListHash - list : "+str(self.listHash)+"\n" |