Home | Trees | Indices | Help |
---|
|
1 # Compatibility.py: this module includes all methods using version-dep. python modules 2 3 import sys 4 79 m = None 10 if get_python_version() < (2,5): 11 import md5 12 m = md5.new() 13 else: 14 import hashlib 15 m = hashlib.md5() 16 17 return m18
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Jun 25 10:35:34 2012 | http://epydoc.sourceforge.net |