Mercurial > p > roundup > code
view roundup/anypy/hashlib_.py @ 4649:fc513bd18167
Use "raise E, V, T" instead of "raise E(V).with_traceback(T)" (with_traceback is not available in Python 2).
| author | Ezio Melotti <ezio.melotti@gmail.com> |
|---|---|
| date | Sat, 28 Jul 2012 18:12:00 +0200 |
| parents | 357c6079c73b |
| children |
line wrap: on
line source
""" anypy.hashlib_: encapsulation of hashlib/md5/sha1/sha """ try: from hashlib import md5, sha1 # new in Python 2.5 shamodule = sha1 except ImportError: from md5 import md5 # deprecated in Python 2.6 from sha import sha as sha1 # deprecated in Python 2.6 import sha as shamodule # vim: ts=8 sts=4 sw=4 si
