# HG changeset patch # User auc # Date 1276779744 -7200 # Node ID 9e4f8db6696287dec6d26077419647934236f3d5 # Parent b3b48e0b8e3b03b4d68eca7479d6f40b9f81dd19 [py2.6] use hashlib to silence python 2.6 deprecation warnings diff -r b3b48e0b8e3b -r 9e4f8db66962 md5crypt.py --- a/md5crypt.py Thu Jun 17 15:02:22 2010 +0200 +++ b/md5crypt.py Thu Jun 17 15:02:24 2010 +0200 @@ -61,7 +61,7 @@ MAGIC = '$1$' # Magic string ITOA64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" -import md5 +import hashlib as md5 def to64 (v, n): ret = '' diff -r b3b48e0b8e3b -r 9e4f8db66962 web/request.py --- a/web/request.py Thu Jun 17 15:02:22 2010 +0200 +++ b/web/request.py Thu Jun 17 15:02:24 2010 +0200 @@ -20,7 +20,7 @@ __docformat__ = "restructuredtext en" import Cookie -import sha +import hashlib import time import random import base64 @@ -359,9 +359,9 @@ def register_onetime_callback(self, func, *args): cbname = 'cb_%s' % ( - sha.sha('%s%s%s%s' % (time.time(), func.__name__, - random.random(), - self.user.login)).hexdigest()) + hashlib.sha('%s%s%s%s' % (time.time(), func.__name__, + random.random(), + self.user.login)).hexdigest()) def _cb(req): try: ret = func(req, *args)